Chamilo is a learning management system focused on ease of use and accessibility
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.
chamilo-lms/assets/vue/router/usergroup.js

38 lines
1002 B

export default {
10 months ago
path: "/resources/usergroups",
meta: { requiresAuth: true },
10 months ago
name: "usergroups",
component: () => import("../components/usergroup/Layout.vue"),
redirect: { name: "UserGroupList" },
children: [
{
10 months ago
name: "UserGroupList",
path: "",
component: () => import("../views/usergroup/List.vue"),
},
{
10 months ago
name: "UserGroupShow",
path: "show/:group_id?",
component: () => import("../views/usergroup/Show.vue"),
props: true,
},
{
10 months ago
name: "UserGroupSearch",
path: "search",
component: () => import("../views/usergroup/Search.vue"),
},
{
10 months ago
name: "UserGroupInvite",
path: "invite/:group_id?",
component: () => import("../views/usergroup/Invite.vue"),
props: true,
},
{
10 months ago
name: "UserGroupDiscussions",
path: "show/:group_id/discussions/:discussion_id",
component: () => import("../components/usergroup/GroupDiscussionTopics.vue"),
props: true,
},
],
}