All Questions
Tagged with angular-route-guards ngrx
1
question
2
votes
1
answer
4k
views
Route guard for authentication with ngrx store
I am trying to create an AuthGuard to check if an user can access a route, else, redirect to login view. I want to return an Observable<Boolean|UrlTree> from the
canActivate method. Here is what ...