diff --git a/ui/src/router/index.js b/ui/src/router/index.js index c968cbd..34c15d0 100644 --- a/ui/src/router/index.js +++ b/ui/src/router/index.js @@ -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 }, },