Remove old session

This commit is contained in:
Matthew Ryan Dillon 2015-10-20 15:03:39 -07:00
parent 1f163737da
commit 30b1706868

View file

@ -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')
});