fixed calendar router rules to allow public access #91

Merged
Ajdj100 merged 1 commits from #70-Calendar-visibility into main 2025-12-14 13:04:36 -06:00
Showing only changes of commit 134fcf32d3 - Show all commits

View File

@@ -19,8 +19,8 @@ const router = createRouter({
{ path: '/profile', component: () => import('@/pages/MyProfile.vue'), meta: { requiresAuth: true, memberOnly: true } },
{ 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: '/calendar', component: () => import('@/pages/Calendar.vue') },
{ path: '/calendar/event/:id', component: () => import('@/pages/Calendar.vue') },
// disabled in favor of linking
// { path: '/documents', component: () => import('@/pages/Documentation.vue'), meta: { requiresAuth: true, memberOnly: true }, },