Add SentComponent for form submission confirmation and integrate with email verification flow

This commit is contained in:
2025-08-23 22:42:18 +02:00
parent 523bf3d43f
commit d1da1296bb
6 changed files with 85 additions and 3 deletions
+10 -2
View File
@@ -106,6 +106,10 @@ export const routes: Routes = [
path: 'staffpowers',
loadComponent: () => import('./pages/reference/staffpowers/staffpowers.component').then(m => m.StaffpowersComponent)
},
{
path: 'forms',
loadComponent: () => import('./pages/forms/forms.component').then(m => m.FormsComponent)
},
{
path: 'forms/appeal',
loadComponent: () => import('./pages/forms/appeal/appeal.component').then(m => m.AppealComponent),
@@ -115,8 +119,12 @@ export const routes: Routes = [
}
},
{
path: 'forms',
loadComponent: () => import('./pages/forms/forms.component').then(m => m.FormsComponent)
path: 'forms/sent',
loadComponent: () => import('./pages/forms/sent/sent.component').then(m => m.SentComponent),
canActivate: [AuthGuard],
data: {
requiredAuthorizations: ['SCOPE_user']
}
},
{
path: 'community',