diff --git a/app/pods/protected/strains/show/route.js b/app/pods/protected/strains/show/route.js index 4c9634b..0a17d8b 100644 --- a/app/pods/protected/strains/show/route.js +++ b/app/pods/protected/strains/show/route.js @@ -1,7 +1,6 @@ import Ember from 'ember'; -import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; -export default Ember.Route.extend(AuthenticatedRouteMixin, { +export default Ember.Route.extend({ model: function(params) { return this.store.findRecord('strain', params.strain_id, { reload: true }); },