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
850 B

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