38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { Routes } from '@angular/router';
|
|
|
|
export const OPS_ROUTES: Routes = [
|
|
{
|
|
path: '',
|
|
title: 'Ops',
|
|
data: { breadcrumb: 'Ops' },
|
|
loadComponent: () =>
|
|
import('../features/ops/ops-overview-page.component').then((m) => m.OpsOverviewPageComponent),
|
|
},
|
|
{
|
|
path: 'operations',
|
|
title: 'Operations',
|
|
data: { breadcrumb: 'Operations' },
|
|
loadChildren: () => import('./operations.routes').then((m) => m.OPERATIONS_ROUTES),
|
|
},
|
|
{
|
|
path: 'integrations',
|
|
title: 'Integrations',
|
|
data: { breadcrumb: 'Integrations' },
|
|
loadChildren: () =>
|
|
import('../features/integration-hub/integration-hub.routes').then((m) => m.integrationHubRoutes),
|
|
},
|
|
{
|
|
path: 'policy',
|
|
title: 'Policy',
|
|
data: { breadcrumb: 'Policy' },
|
|
loadChildren: () => import('../features/policy/policy.routes').then((m) => m.POLICY_ROUTES),
|
|
},
|
|
{
|
|
path: 'platform-setup',
|
|
title: 'Platform Setup',
|
|
data: { breadcrumb: 'Platform Setup' },
|
|
loadChildren: () =>
|
|
import('../features/platform/setup/platform-setup.routes').then((m) => m.PLATFORM_SETUP_ROUTES),
|
|
},
|
|
];
|