Remove unneeded user model hook
This commit is contained in:
parent
0c8fc4db6c
commit
0dbcd45c4e
1 changed files with 0 additions and 7 deletions
|
@ -1,14 +1,7 @@
|
|||
import Ember from 'ember';
|
||||
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
||||
import parseBase64 from '../../utils/parse-base64';
|
||||
|
||||
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||
model: function() {
|
||||
let token = this.get('session.secure.token');
|
||||
let user = parseBase64(token);
|
||||
return this.store.find('user', user.sub);
|
||||
},
|
||||
|
||||
actions: {
|
||||
error: function() {
|
||||
this.transitionTo('/not-found');
|
||||
|
|
Reference in a new issue