import { MenuContext } from '../models/context.model'; export const SAAS_MENU_DATA: MenuContext = { defaultLandingPage: '/dashboards/crm', items: [ { headTitle: 'MAIN' }, { title: 'Dashboards', icon: '', type: 'sub', active: false, selected: false, dirchange: false, children: [ { path: '/dashboards/crm', title: 'CRM', type: 'link', dirchange: false }, ], }, { headTitle: 'SAAS ADMIN' }, { title: 'Management', icon: '', type: 'sub', active: false, selected: false, dirchange: false, children: [ { path: '/tenants', title: 'Tenants', type: 'link', dirchange: false }, { path: '/users', title: 'Users', type: 'link', dirchange: false }, { title: 'Configuration', type: 'sub', active: false, selected: false, dirchange: false, children: [ { path: '/global-masters', title: 'Global Masters', type: 'link', dirchange: false }, { path: '/localization', title: 'Localization', type: 'link', dirchange: false }, { title: 'Branding', type: 'sub', active: false, selected: false, dirchange: false, children: [ { path: '/theming', title: 'Theming', type: 'link', dirchange: false }, { path: '/platform', title: 'Platform', type: 'link', dirchange: false }, ], }, ], }, ], }, { title: 'Operations', icon: '', type: 'sub', active: false, selected: false, dirchange: false, children: [ { path: '/billing', title: 'Billing', type: 'link', dirchange: false }, { path: '/monitoring', title: 'Monitoring', type: 'link', dirchange: false }, ], }, ], };