13 lines
338 B
JavaScript
13 lines
338 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Route.extend({
|
|
model: function() {
|
|
return this.store.findAll('characteristic');
|
|
},
|
|
|
|
setupController: function(controller, model) {
|
|
controller.set('characteristics', this.store.peekAll('characteristic'));
|
|
controller.set('strains', this.store.peekAll('strain'));
|
|
},
|
|
|
|
});
|