37 lines
873 B
JavaScript
37 lines
873 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Route.extend({
|
|
currentUser: Ember.inject.service('session-account'),
|
|
|
|
beforeModel: function(transition) {
|
|
this._super(transition);
|
|
this.get('currentUser.account').then((user) => {
|
|
if (user.get('isReader')) {
|
|
this.transitionTo('protected.strains.index');
|
|
}
|
|
});
|
|
},
|
|
|
|
model: function() {
|
|
return Ember.RSVP.hash({
|
|
strain: this.store.createRecord('strain'),
|
|
species: this.store.findAll('species'), // Need for dropdown
|
|
});
|
|
},
|
|
|
|
setupController: function(controller, models) {
|
|
controller.setProperties(models);
|
|
},
|
|
|
|
actions: {
|
|
willTransition: function(/*transition*/) {
|
|
const controller = this.get('controller');
|
|
const strain = controller.get('strain');
|
|
|
|
if (strain.get('isNew')) {
|
|
strain.destroyRecord();
|
|
}
|
|
},
|
|
},
|
|
|
|
});
|