Add redirections for appeal and staff application forms paths
This commit is contained in:
parent
ed9d41cdc6
commit
1b697fcaa3
|
|
@ -110,6 +110,11 @@ export const routes: Routes = [
|
||||||
path: 'forms',
|
path: 'forms',
|
||||||
loadComponent: () => import('./pages/forms/forms.component').then(m => m.FormsComponent)
|
loadComponent: () => import('./pages/forms/forms.component').then(m => m.FormsComponent)
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'appeal',
|
||||||
|
redirectTo: 'forms/appeal',
|
||||||
|
pathMatch: 'full'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'forms/appeal',
|
path: 'forms/appeal',
|
||||||
loadComponent: () => import('./pages/forms/appeal/appeal.component').then(m => m.AppealComponent),
|
loadComponent: () => import('./pages/forms/appeal/appeal.component').then(m => m.AppealComponent),
|
||||||
|
|
@ -126,6 +131,11 @@ export const routes: Routes = [
|
||||||
requiredAuthorizations: ['SCOPE_user']
|
requiredAuthorizations: ['SCOPE_user']
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'apply',
|
||||||
|
redirectTo: 'forms/staff-application',
|
||||||
|
pathMatch: 'full'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'forms/staff-application',
|
path: 'forms/staff-application',
|
||||||
loadComponent: () => import('./pages/forms/staff-application/staff-application.component').then(m => m.StaffApplicationComponent),
|
loadComponent: () => import('./pages/forms/staff-application/staff-application.component').then(m => m.StaffApplicationComponent),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user