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 c3f9ba7bca - Show all commits

View File

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