From 134fcf32d3df4f81b603a50b0954214c95b370dc Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Sun, 14 Dec 2025 14:05:44 -0500 Subject: [PATCH] fixed calendar router rules to allow public access --- ui/src/router/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }, }, -- 2.37.3.windows.1