2a1a38f986
Co-authored-by: Tejaswini Chile <tejaswini@chatwoot.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
import { frontendURL } from '../../../../helper/URLHelper';
|
|
|
|
const primaryMenuItems = accountId => [
|
|
{
|
|
icon: 'chat',
|
|
key: 'conversations',
|
|
label: 'CONVERSATIONS',
|
|
toState: frontendURL(`accounts/${accountId}/dashboard`),
|
|
toStateName: 'home',
|
|
roles: ['administrator', 'agent'],
|
|
},
|
|
{
|
|
icon: 'book-contacts',
|
|
key: 'contacts',
|
|
label: 'CONTACTS',
|
|
toState: frontendURL(`accounts/${accountId}/contacts`),
|
|
toStateName: 'contacts_dashboard',
|
|
roles: ['administrator', 'agent'],
|
|
},
|
|
{
|
|
icon: 'arrow-trending-lines',
|
|
key: 'reports',
|
|
label: 'REPORTS',
|
|
toState: frontendURL(`accounts/${accountId}/reports`),
|
|
toStateName: 'settings_account_reports',
|
|
roles: ['administrator'],
|
|
},
|
|
{
|
|
icon: 'megaphone',
|
|
key: 'campaigns',
|
|
label: 'CAMPAIGNS',
|
|
featureFlag: 'campaigns',
|
|
toState: frontendURL(`accounts/${accountId}/campaigns`),
|
|
toStateName: 'settings_account_campaigns',
|
|
roles: ['administrator'],
|
|
},
|
|
{
|
|
icon: 'library',
|
|
key: 'helpcenter',
|
|
label: 'HELP_CENTER.TITLE',
|
|
featureFlag: 'help_center',
|
|
toState: frontendURL(`accounts/${accountId}/portals`),
|
|
toStateName: 'default_portal_articles',
|
|
roles: ['administrator'],
|
|
},
|
|
{
|
|
icon: 'settings',
|
|
key: 'settings',
|
|
label: 'SETTINGS',
|
|
toState: frontendURL(`accounts/${accountId}/settings`),
|
|
toStateName: 'settings_home',
|
|
roles: ['administrator', 'agent'],
|
|
},
|
|
];
|
|
|
|
export default primaryMenuItems;
|