Skip to content

Instantly share code, notes, and snippets.

Created July 8, 2014 17:41
Show Gist options
  • Save anonymous/e722cf4d90749d7d06e7 to your computer and use it in GitHub Desktop.
Save anonymous/e722cf4d90749d7d06e7 to your computer and use it in GitHub Desktop.
import Ember from 'ember';
export default Ember.Object.extend({
isLoggedIn: localStorage.isLoggedIn,
savedTransition: null,
loginUser: function() {
this.set('isLoggedIn', true);
localStorage.isLoggedIn = true;
},
logoutUser: function() {
this.set('savedTransition', null);
this.set('isLoggedIn', null);
delete localStorage.isLoggedIn;
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment