Skip to content

Instantly share code, notes, and snippets.

@ozgurrgul
Created July 21, 2018 19:53
Show Gist options
  • Save ozgurrgul/3ccc96b477f07fe0f4e1470d6d4ccad4 to your computer and use it in GitHub Desktop.
Save ozgurrgul/3ccc96b477f07fe0f4e1470d6d4ccad4 to your computer and use it in GitHub Desktop.
const appRoutes: Routes = [
{
path: 'dashboard',
component: DashboardPageComponent,
canActivate: [NeedAuthGuard] // <---- connected Route with guard
},
{
path: 'login',
component: LoginPageComponent
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment