Skip to content

Instantly share code, notes, and snippets.

@dasmido
Created January 20, 2018 17:46
Show Gist options
  • Save dasmido/12efdefa3faf40df1e77f24efcc9ca25 to your computer and use it in GitHub Desktop.
Save dasmido/12efdefa3faf40df1e77f24efcc9ca25 to your computer and use it in GitHub Desktop.
// function to register user
// function for authenticate user
// function to store user data (token)
storeUserData(token, user){
localStorage.setItem('id_token', token);
localStorage.setItem('user', JSON.stringify(user));
this.authToken = token;
this.user = user;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment