Detailed characteristics view

This commit is contained in:
Matthew Dillon 2015-11-17 16:10:33 -07:00
parent e33852120a
commit 8b4a26a932
6 changed files with 13 additions and 14 deletions

View file

@ -4,7 +4,7 @@ const { Route } = Ember;
export default Route.extend({
model: function(params) {
return this.store.findRecord('strain', params.strain_id);
return this.store.findRecord('strain', params.strain_id, { reload: true });
},
});