feat: Creates custom attributes route (#2877)
This commit is contained in:
@@ -144,6 +144,7 @@ export const getSidebarItems = accountId => ({
|
|||||||
'canned_list',
|
'canned_list',
|
||||||
'labels_list',
|
'labels_list',
|
||||||
'settings_inbox',
|
'settings_inbox',
|
||||||
|
'attributes_list',
|
||||||
'settings_inbox_new',
|
'settings_inbox_new',
|
||||||
'settings_inbox_list',
|
'settings_inbox_list',
|
||||||
'settings_inbox_show',
|
'settings_inbox_show',
|
||||||
@@ -202,6 +203,13 @@ export const getSidebarItems = accountId => ({
|
|||||||
toState: frontendURL(`accounts/${accountId}/settings/labels/list`),
|
toState: frontendURL(`accounts/${accountId}/settings/labels/list`),
|
||||||
toStateName: 'labels_list',
|
toStateName: 'labels_list',
|
||||||
},
|
},
|
||||||
|
attributes: {
|
||||||
|
icon: 'ion-code',
|
||||||
|
label: 'ATTRIBUTES',
|
||||||
|
hasSubMenu: false,
|
||||||
|
toState: frontendURL(`accounts/${accountId}/settings/attributes/list`),
|
||||||
|
toStateName: 'attributes_list',
|
||||||
|
},
|
||||||
cannedResponses: {
|
cannedResponses: {
|
||||||
icon: 'ion-chatbox-working',
|
icon: 'ion-chatbox-working',
|
||||||
label: 'CANNED_RESPONSES',
|
label: 'CANNED_RESPONSES',
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"ATTRIBUTES_MGMT": {
|
||||||
|
"HEADER": "Attributes",
|
||||||
|
"HEADER_BTN_TXT": "Add Attribute"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -17,6 +17,7 @@ import { default as _signup } from './signup.json';
|
|||||||
import { default as _teamsSettings } from './teamsSettings.json';
|
import { default as _teamsSettings } from './teamsSettings.json';
|
||||||
import { default as _integrationApps } from './integrationApps.json';
|
import { default as _integrationApps } from './integrationApps.json';
|
||||||
import { default as _csatMgmtMgmt } from './csatMgmt.json';
|
import { default as _csatMgmtMgmt } from './csatMgmt.json';
|
||||||
|
import { default as _attributesMgmt } from './attributesMgmt.json';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
..._agentMgmt,
|
..._agentMgmt,
|
||||||
@@ -38,4 +39,5 @@ export default {
|
|||||||
..._teamsSettings,
|
..._teamsSettings,
|
||||||
..._integrationApps,
|
..._integrationApps,
|
||||||
..._csatMgmtMgmt,
|
..._csatMgmtMgmt,
|
||||||
|
..._attributesMgmt,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -138,6 +138,7 @@
|
|||||||
"ACCOUNT_SETTINGS": "Account Settings",
|
"ACCOUNT_SETTINGS": "Account Settings",
|
||||||
"APPLICATIONS": "Applications",
|
"APPLICATIONS": "Applications",
|
||||||
"LABELS": "Labels",
|
"LABELS": "Labels",
|
||||||
|
"ATTRIBUTES": "Attributes",
|
||||||
"TEAMS": "Teams",
|
"TEAMS": "Teams",
|
||||||
"ALL_CONTACTS": "All Contacts",
|
"ALL_CONTACTS": "All Contacts",
|
||||||
"TAGGED_WITH": "Tagged with",
|
"TAGGED_WITH": "Tagged with",
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<template>
|
||||||
|
<div class="column content-box">
|
||||||
|
<woot-button
|
||||||
|
color-scheme="success"
|
||||||
|
class-names="button--fixed-right-top"
|
||||||
|
icon="ion-android-add-circle"
|
||||||
|
>
|
||||||
|
{{ $t('ATTRIBUTES_MGMT.HEADER_BTN_TXT') }}
|
||||||
|
</woot-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
import SettingsContent from '../Wrapper';
|
||||||
|
import AttributesHome from './Index';
|
||||||
|
import { frontendURL } from '../../../../helper/URLHelper';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
routes: [
|
||||||
|
{
|
||||||
|
path: frontendURL('accounts/:accountId/settings/attributes'),
|
||||||
|
component: SettingsContent,
|
||||||
|
props: {
|
||||||
|
headerTitle: 'ATTRIBUTES_MGMT.HEADER',
|
||||||
|
icon: 'ion-code',
|
||||||
|
showNewButton: false,
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
name: 'attributes_wrapper',
|
||||||
|
redirect: 'list',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'list',
|
||||||
|
name: 'attributes_list',
|
||||||
|
component: AttributesHome,
|
||||||
|
roles: ['administrator'],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
@@ -10,6 +10,7 @@ import profile from './profile/profile.routes';
|
|||||||
import reports from './reports/reports.routes';
|
import reports from './reports/reports.routes';
|
||||||
import campaigns from './campaigns/campaigns.routes';
|
import campaigns from './campaigns/campaigns.routes';
|
||||||
import teams from './teams/teams.routes';
|
import teams from './teams/teams.routes';
|
||||||
|
import attributes from './attributes/attributes.routes';
|
||||||
import store from '../../../store';
|
import store from '../../../store';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -35,6 +36,7 @@ export default {
|
|||||||
...reports.routes,
|
...reports.routes,
|
||||||
...teams.routes,
|
...teams.routes,
|
||||||
...campaigns.routes,
|
...campaigns.routes,
|
||||||
|
...attributes.routes,
|
||||||
...integrationapps.routes,
|
...integrationapps.routes,
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user