From dd2ac19e4ab7d2dac9b4bbd732fb9cc8ba83b0da Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Sat, 21 Mar 2026 19:44:57 -0400 Subject: [PATCH] Allow recruiters to see admin pages --- ui/src/router/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/router/index.ts b/ui/src/router/index.ts index eed6128..ae2d21d 100644 --- a/ui/src/router/index.ts +++ b/ui/src/router/index.ts @@ -33,7 +33,7 @@ const router = createRouter({ // ADMIN / STAFF ROUTES { path: '/administration', - meta: { requiresAuth: true, memberOnly: true, roles: ['17th Administrator', '17th HQ', '17th Command'] }, + meta: { requiresAuth: true, memberOnly: true, roles: ['17th Administrator', '17th HQ', '17th Command', '17th Recruiter'] }, children: [ { path: 'applications', component: () => import('@/pages/ManageApplications.vue') }, { path: 'applications/:id', component: () => import('@/pages/ManageApplications.vue') },