Remove old session
This commit is contained in:
parent
1f163737da
commit
30b1706868
1 changed files with 0 additions and 12 deletions
|
@ -1,12 +0,0 @@
|
|||
import Session from 'simple-auth/session';
|
||||
import parseBase64 from '../utils/parse-base64';
|
||||
|
||||
export default Session.extend({
|
||||
currentUser: function() {
|
||||
let token = this.get('secure.token');
|
||||
if (token && this.get('isAuthenticated')) {
|
||||
let t = parseBase64(token);
|
||||
return this._store.findRecord('user', t['sub']);
|
||||
}
|
||||
}.property('secure.token', 'isAuthenticated')
|
||||
});
|
Reference in a new issue