reimplemented member page
This commit is contained in:
@@ -13,7 +13,6 @@ const router = createRouter({
|
||||
{ path: '/', component: () => import('@/pages/Homepage.vue') },
|
||||
|
||||
// MEMBER ROUTES
|
||||
{ path: '/members', component: () => import('@/pages/memberList.vue'), meta: { requiresAuth: true, memberOnly: true } },
|
||||
{ path: '/loa', component: () => import('@/pages/SubmitLOA.vue'), meta: { requiresAuth: true, memberOnly: true } },
|
||||
{ path: '/profile', component: () => import('@/pages/MyProfile.vue'), meta: { requiresAuth: true } },
|
||||
|
||||
@@ -39,7 +38,8 @@ const router = createRouter({
|
||||
{ path: 'applications/:id', component: () => import('@/pages/Application.vue') },
|
||||
{ path: 'loa', component: () => import('@/pages/ManageLOA.vue') },
|
||||
{ path: 'roles', component: () => import('@/pages/ManageRoles.vue') },
|
||||
{ path: 'roles/:id', component: () => import('@/pages/ManageRoles.vue') }
|
||||
{ path: 'roles/:id', component: () => import('@/pages/ManageRoles.vue') },
|
||||
{ path: 'members', component: () => import('@/pages/memberList.vue') },
|
||||
]
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user