feat: Creates custom attributes route (#2877)
This commit is contained in:
@@ -144,6 +144,7 @@ export const getSidebarItems = accountId => ({
|
||||
'canned_list',
|
||||
'labels_list',
|
||||
'settings_inbox',
|
||||
'attributes_list',
|
||||
'settings_inbox_new',
|
||||
'settings_inbox_list',
|
||||
'settings_inbox_show',
|
||||
@@ -202,6 +203,13 @@ export const getSidebarItems = accountId => ({
|
||||
toState: frontendURL(`accounts/${accountId}/settings/labels/list`),
|
||||
toStateName: 'labels_list',
|
||||
},
|
||||
attributes: {
|
||||
icon: 'ion-code',
|
||||
label: 'ATTRIBUTES',
|
||||
hasSubMenu: false,
|
||||
toState: frontendURL(`accounts/${accountId}/settings/attributes/list`),
|
||||
toStateName: 'attributes_list',
|
||||
},
|
||||
cannedResponses: {
|
||||
icon: 'ion-chatbox-working',
|
||||
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 _integrationApps } from './integrationApps.json';
|
||||
import { default as _csatMgmtMgmt } from './csatMgmt.json';
|
||||
import { default as _attributesMgmt } from './attributesMgmt.json';
|
||||
|
||||
export default {
|
||||
..._agentMgmt,
|
||||
@@ -38,4 +39,5 @@ export default {
|
||||
..._teamsSettings,
|
||||
..._integrationApps,
|
||||
..._csatMgmtMgmt,
|
||||
..._attributesMgmt,
|
||||
};
|
||||
|
||||
@@ -138,6 +138,7 @@
|
||||
"ACCOUNT_SETTINGS": "Account Settings",
|
||||
"APPLICATIONS": "Applications",
|
||||
"LABELS": "Labels",
|
||||
"ATTRIBUTES": "Attributes",
|
||||
"TEAMS": "Teams",
|
||||
"ALL_CONTACTS": "All Contacts",
|
||||
"TAGGED_WITH": "Tagged with",
|
||||
|
||||
Reference in New Issue
Block a user