From 1b697fcaa39e150497b74b8a02bbc6a97ab673c6 Mon Sep 17 00:00:00 2001 From: akastijn Date: Fri, 17 Oct 2025 22:05:00 +0200 Subject: [PATCH] Add redirections for appeal and staff application forms paths --- frontend/src/app/app.routes.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts index 7cea8be..450f505 100644 --- a/frontend/src/app/app.routes.ts +++ b/frontend/src/app/app.routes.ts @@ -110,6 +110,11 @@ export const routes: Routes = [ path: 'forms', loadComponent: () => import('./pages/forms/forms.component').then(m => m.FormsComponent) }, + { + path: 'appeal', + redirectTo: 'forms/appeal', + pathMatch: 'full' + }, { path: 'forms/appeal', loadComponent: () => import('./pages/forms/appeal/appeal.component').then(m => m.AppealComponent), @@ -126,6 +131,11 @@ export const routes: Routes = [ requiredAuthorizations: ['SCOPE_user'] } }, + { + path: 'apply', + redirectTo: 'forms/staff-application', + pathMatch: 'full' + }, { path: 'forms/staff-application', loadComponent: () => import('./pages/forms/staff-application/staff-application.component').then(m => m.StaffApplicationComponent),