Files
git.stella-ops.org/src/Web/StellaOps.Web/src/app/routes/ops.routes.ts
2026-02-21 16:21:33 +02:00

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),
},
];