Added documentation page
Some checks failed
Continuous Deployment / Update Deployment (push) Failing after 1m13s

This commit is contained in:
2025-12-04 22:24:12 -05:00
parent 5a7b3ba2ab
commit f6c4c3e508
4 changed files with 15 additions and 2 deletions

View File

@@ -18,6 +18,8 @@ const router = createRouter({
{ path: '/calendar', component: () => import('@/pages/Calendar.vue'), meta: { requiresAuth: true, memberOnly: true }, },
{ path: '/calendar/event/:id', component: () => import('@/pages/Calendar.vue'), meta: { requiresAuth: true, memberOnly: true }, },
{ path: '/documents', component: () => import('@/pages/Documentation.vue'), meta: { requiresAuth: true, memberOnly: true }, },
{ path: '/trainingReport', component: () => import('@/pages/TrainingReport.vue'), meta: { requiresAuth: true, memberOnly: true } },
{ path: '/trainingReport/new', component: () => import('@/pages/TrainingReport.vue'), meta: { requiresAuth: true, memberOnly: true } },