Merge literally everything into main so I stop just working on one branch #14

Merged
Ajdj100 merged 64 commits from recruiter into main 2025-10-28 13:40:41 -05:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 659a8f5b98 - Show all commits

View File

@@ -61,7 +61,7 @@ async function handleDeny(id) {
const router = useRouter();
function openApplication(id) {
router.push(`/applications/${id}`)
router.push(`./application/${id}`)
}
onMounted(async () => {

View File

@@ -22,6 +22,7 @@ const router = createRouter({
meta: { requiresAuth: true, memberOnly: true, roles: ['staff', 'admin'] },
children: [
{ path: 'applications', component: () => import('@/pages/ManageApplications.vue') },
{ path: 'application/:id', component: () => import('@/pages/Application.vue') },
{ path: 'rankChange', component: () => import('@/pages/RankChange.vue') },
{ path: 'applications/:id', component: () => import('@/pages/Application.vue') },
{ path: 'transfer', component: () => import('@/pages/ManageTransfers.vue') },