mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 20:48:07 +00:00
83 lines
2.4 KiB
JavaScript
83 lines
2.4 KiB
JavaScript
/* eslint arrow-body-style: 0 */
|
|
import { frontendURL } from '../../../../helper/URLHelper';
|
|
import channelFactory from './channel-factory';
|
|
|
|
const SettingsContent = () => import('../Wrapper.vue');
|
|
const InboxHome = () => import('./Index.vue');
|
|
const Settings = () => import('./Settings.vue');
|
|
const InboxChannel = () => import('./InboxChannels.vue');
|
|
const ChannelList = () => import('./ChannelList.vue');
|
|
const AddAgents = () => import('./AddAgents.vue');
|
|
const FinishSetup = () => import('./FinishSetup.vue');
|
|
|
|
export default {
|
|
routes: [
|
|
{
|
|
path: frontendURL('accounts/:accountId/settings/inboxes'),
|
|
component: SettingsContent,
|
|
props: params => {
|
|
const showBackButton = params.name !== 'settings_inbox_list';
|
|
return {
|
|
headerTitle: 'INBOX_MGMT.HEADER',
|
|
headerButtonText: 'SETTINGS.INBOXES.NEW_INBOX',
|
|
icon: 'mail-inbox-all',
|
|
newButtonRoutes: ['settings_inbox_list'],
|
|
showBackButton,
|
|
};
|
|
},
|
|
children: [
|
|
{
|
|
path: '',
|
|
name: 'settings_inbox',
|
|
redirect: 'list',
|
|
},
|
|
{
|
|
path: 'list',
|
|
name: 'settings_inbox_list',
|
|
component: InboxHome,
|
|
roles: ['administrator'],
|
|
},
|
|
{
|
|
path: 'new',
|
|
component: InboxChannel,
|
|
children: [
|
|
{
|
|
path: '',
|
|
name: 'settings_inbox_new',
|
|
component: ChannelList,
|
|
roles: ['administrator'],
|
|
},
|
|
{
|
|
path: ':inbox_id/finish',
|
|
name: 'settings_inbox_finish',
|
|
component: FinishSetup,
|
|
roles: ['administrator'],
|
|
},
|
|
{
|
|
path: ':sub_page',
|
|
name: 'settings_inboxes_page_channel',
|
|
component: channelFactory.create(),
|
|
roles: ['administrator'],
|
|
props: route => {
|
|
return { channel_name: route.params.sub_page };
|
|
},
|
|
},
|
|
{
|
|
path: ':inbox_id/agents',
|
|
name: 'settings_inboxes_add_agents',
|
|
roles: ['administrator'],
|
|
component: AddAgents,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: ':inboxId',
|
|
name: 'settings_inbox_show',
|
|
component: Settings,
|
|
roles: ['administrator'],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|