Skip to content

Instantly share code, notes, and snippets.

@GerritRiesch94
Last active April 13, 2023 13:19
Show Gist options
  • Save GerritRiesch94/1332e749bf3d977ff7b0ef8d8214177c to your computer and use it in GitHub Desktop.
Save GerritRiesch94/1332e749bf3d977ff7b0ef8d8214177c to your computer and use it in GitHub Desktop.
New App Routing Module with functional guard
const routes: Routes = [
{
path: 'home',
loadComponent: () => import('./home/home.component').then(m => m.HomeComponent),
canActivate: [(): boolean => inject(AuthService).isAuthenticated()]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment