Created
July 8, 2014 17:41
-
-
Save anonymous/e722cf4d90749d7d06e7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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