Created
July 21, 2018 19:53
-
-
Save ozgurrgul/3ccc96b477f07fe0f4e1470d6d4ccad4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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