Skip to content

Instantly share code, notes, and snippets.

@krishnaanaril
Created June 10, 2018 05:35
Show Gist options
  • Save krishnaanaril/4d1065e8bbcec56f102cf8965060d593 to your computer and use it in GitHub Desktop.
Save krishnaanaril/4d1065e8bbcec56f102cf8965060d593 to your computer and use it in GitHub Desktop.
Example for auth-guard in Angular 6
canActivate() {
if ( this.authService.isLoggedIn() ) {
return true;
}
this.router.navigate(['/']);
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment