This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/species/new/route.js
2015-07-09 20:52:01 -08:00

27 lines
665 B
JavaScript

import Ember from 'ember';
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
export default Ember.Route.extend(AuthenticatedRouteMixin, {
beforeModel: function(transition) {
this._super(transition);
if (this.get('session.currentUser.role') === 'R') {
this.transitionTo('species.index');
}
},
model: function() {
return this.store.createRecord('species');
},
actions: {
willTransition: function(transition) {
let controller = this.get('controller');
let species = controller.get('model');
if (species.get('isNew')) {
species.deleteRecord();
}
},
},
});