Allow recruiters to see admin pages
All checks were successful
Pull Request CI / Merge Check (pull_request) Successful in 4m0s

This commit is contained in:
2026-03-21 19:44:57 -04:00
parent adb5e3e137
commit dd2ac19e4a

View File

@@ -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') },