Merge pull request 'fixed calendar router rules to allow public access' (#91) from #70-Calendar-visibility into main
All checks were successful
Continuous Integration / Update Development (push) Successful in 2m9s
All checks were successful
Continuous Integration / Update Development (push) Successful in 2m9s
Reviewed-on: #91
This commit was merged in pull request #91.
This commit is contained in:
@@ -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 }, },
|
||||
|
||||
Reference in New Issue
Block a user