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/message.js

35 lines
890 B

export default {
path: "/resources/messages",
meta: { requiresAuth: true },
name: "messages",
component: () => import("../components/message/MessageLayout.vue"),
redirect: { name: "MessageList" },
children: [
{
name: "MessageList",
path: "",
component: () => import("../views/message/MessageList.vue"),
},
{
name: "MessageCreate",
path: "new",
component: () => import("../views/message/MessageCreate.vue"),
},
{
name: "MessageReply",
path: "reply",
component: () => import("../views/message/MessageReply.vue"),
},
/*{
name: 'MessageUpdate',
path: ':id/edit',
component: () => import('../views/message/Update.vue')
},*/
{
name: "MessageShow",
//path: ':id',
path: "show",
component: () => import("../views/message/MessageShow.vue"),
},
],
}