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/protected/strains/new/route.js
2015-07-13 08:29:53 -08:00

34 lines
867 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('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*/) {
let controller = this.get('controller');
let strain = controller.get('strain');
if (strain.get('isNew')) {
strain.deleteRecord();
}
},
},
});