roughing in custom session (again :( )

This commit is contained in:
Matthew Dillon 2015-07-09 20:52:01 -08:00
parent bb2386807c
commit 72c957f8dc
7 changed files with 42 additions and 10 deletions

View file

@ -1,7 +1,17 @@
import Ember from 'ember';
import ApplicationRouteMixin from 'simple-auth/mixins/application-route-mixin';
// import parseBase64 from '../../utils/parse-base64';
export default Ember.Route.extend(ApplicationRouteMixin, {
// model: function() {
// let token = this.get('session.secure.token');
// if (Ember.isNone(token)) {
// return null;
// }
// let user = parseBase64(token);
// return this.store.find('user', user.sub);
// },
actions: {
invalidateSession: function() {
this.get('session').invalidate().then(() => {