Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public handleAuthentication(): void {
  2.   if (this.isAuthenticated()) {
  3.     if (this.isAdmin()) {
  4.       this.router.navigate(["/admin"]);
  5.     }
  6.     else {
  7.       this.router.navigate(["/list"]);
  8.     }
  9.   }
  10.   else {
  11.     this.router.navigate(['/']);
  12.   }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement