You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
997 B
37 lines
997 B
export default {
|
|
path: '/resources/usergroups',
|
|
meta: { requiresAuth: true },
|
|
name: 'usergroups',
|
|
component: () => import('../components/usergroup/Layout.vue'),
|
|
redirect: { name: 'UserGroupList' },
|
|
children: [
|
|
{
|
|
name: 'UserGroupList',
|
|
path: '',
|
|
component: () => import('../views/usergroup/List.vue')
|
|
},
|
|
{
|
|
name: 'UserGroupShow',
|
|
path: 'show/:group_id?',
|
|
component: () => import('../views/usergroup/Show.vue'),
|
|
props: true
|
|
},
|
|
{
|
|
name: 'UserGroupSearch',
|
|
path: 'search',
|
|
component: () => import('../views/usergroup/Search.vue'),
|
|
},
|
|
{
|
|
name: 'UserGroupInvite',
|
|
path: 'invite/:group_id?',
|
|
component: () => import('../views/usergroup/Invite.vue'),
|
|
props: true
|
|
},
|
|
{
|
|
name: 'UserGroupDiscussions',
|
|
path: 'show/:group_id/discussions/:discussion_id',
|
|
component: () => import('../components/usergroup/GroupDiscussionTopics.vue'),
|
|
props: true
|
|
}
|
|
]
|
|
};
|
|
|