16 lines
447 B
JavaScript
16 lines
447 B
JavaScript
import Ember from 'ember';
|
|
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
|
|
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
|
model: function(params) {
|
|
return Ember.RSVP.hash({
|
|
strain: this.store.find('strain', params.strain_id),
|
|
species: this.store.findAll('species'),
|
|
});
|
|
},
|
|
|
|
setupController: function(controller, models) {
|
|
controller.setProperties(models);
|
|
},
|
|
|
|
});
|