Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Last active August 18, 2018 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/68731aed37452e45118fe6b62ae44bb4 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/68731aed37452e45118fe6b62ae44bb4 to your computer and use it in GitHub Desktop.
isAuthenticated() {
const token = localStorage.getItem('token');
return !this.jwtHelper.isTokenExpired(token);
}
getToken() {
return this.jwtHelper.tokenGetter();
}
logout() {
localStorage.removeItem('token');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment