feat: Implement Login and Logout functionality, protect authenticated routes #12

Merged
ptran merged 8 commits from feature/oauth into main 2025-02-12 10:00:54 +00:00
Showing only changes of commit 4b9574ac96 - Show all commits

View File

@ -9,13 +9,8 @@ export const routes: Routes = [
component: LandingPageComponent, component: LandingPageComponent,
}, },
{ {
path: '**', path: 'home',
component: HomepageComponent,
canActivate: [authGuard], canActivate: [authGuard],
children: [ }
{
path: 'home',
component: HomepageComponent,
},
],
},
]; ];