69 lines
1.9 KiB
JavaScript
69 lines
1.9 KiB
JavaScript
/* eslint arrow-body-style: 0 */
|
|
import ConversationView from './ConversationView';
|
|
import { frontendURL } from '../../../helper/URLHelper';
|
|
|
|
export default {
|
|
routes: [
|
|
{
|
|
path: frontendURL('accounts/:accountId/dashboard'),
|
|
name: 'home',
|
|
roles: ['administrator', 'agent'],
|
|
component: ConversationView,
|
|
props: () => {
|
|
return { inboxId: 0 };
|
|
},
|
|
},
|
|
{
|
|
path: frontendURL('accounts/:accountId/inbox/:inbox_id'),
|
|
name: 'inbox_dashboard',
|
|
roles: ['administrator', 'agent'],
|
|
component: ConversationView,
|
|
props: route => {
|
|
return { inboxId: route.params.inbox_id };
|
|
},
|
|
},
|
|
{
|
|
path: frontendURL('accounts/:accountId/conversations/:conversation_id'),
|
|
name: 'inbox_conversation',
|
|
roles: ['administrator', 'agent'],
|
|
component: ConversationView,
|
|
props: route => {
|
|
return { inboxId: 0, conversationId: route.params.conversation_id };
|
|
},
|
|
},
|
|
{
|
|
path: frontendURL(
|
|
'accounts/:accountId/inbox/:inbox_id/conversations/:conversation_id'
|
|
),
|
|
name: 'conversation_through_inbox',
|
|
roles: ['administrator', 'agent'],
|
|
component: ConversationView,
|
|
props: route => {
|
|
return {
|
|
conversationId: route.params.conversation_id,
|
|
inboxId: route.params.inbox_id,
|
|
};
|
|
},
|
|
},
|
|
{
|
|
path: frontendURL('accounts/:accountId/label/:label'),
|
|
name: 'label_conversations',
|
|
roles: ['administrator', 'agent'],
|
|
component: ConversationView,
|
|
props: route => ({ label: route.params.label }),
|
|
},
|
|
{
|
|
path: frontendURL(
|
|
'accounts/:accountId/label/:label/conversations/:conversation_id'
|
|
),
|
|
name: 'conversations_through_label',
|
|
roles: ['administrator', 'agent'],
|
|
component: ConversationView,
|
|
props: route => ({
|
|
conversationId: route.params.conversation_id,
|
|
label: route.params.label,
|
|
}),
|
|
},
|
|
],
|
|
};
|