diff --git a/src/Web/StellaOps.Web/src/app/features/security-risk/security-risk-overview.component.ts b/src/Web/StellaOps.Web/src/app/features/security-risk/security-risk-overview.component.ts index 666fabca0..27bd7ab5f 100644 --- a/src/Web/StellaOps.Web/src/app/features/security-risk/security-risk-overview.component.ts +++ b/src/Web/StellaOps.Web/src/app/features/security-risk/security-risk-overview.component.ts @@ -73,6 +73,7 @@ interface PlatformListResponse {

Release-blocking posture, advisory freshness, and disposition confidence for the selected scope.

+ Scan an Image View Active Findings
@@ -593,4 +594,8 @@ export class SecurityRiskOverviewComponent { if (environment) params = params.set('environment', environment); return params; } + + printReport(): void { + window.print(); + } } diff --git a/src/Web/StellaOps.Web/src/app/routes/evidence.routes.ts b/src/Web/StellaOps.Web/src/app/routes/evidence.routes.ts index 3e83e49a4..23f8e1c02 100644 --- a/src/Web/StellaOps.Web/src/app/routes/evidence.routes.ts +++ b/src/Web/StellaOps.Web/src/app/routes/evidence.routes.ts @@ -106,4 +106,20 @@ export const EVIDENCE_ROUTES: Routes = [ data: { breadcrumb: 'Audit Log' }, loadChildren: () => import('../features/audit-log/audit-log.routes').then((m) => m.auditLogRoutes), }, + { + path: 'bundles', + title: 'Audit Bundles', + data: { breadcrumb: 'Bundles' }, + loadComponent: () => + import('../features/triage/triage-audit-bundles.component').then((m) => m.TriageAuditBundlesComponent), + }, + { + path: 'bundles/new', + title: 'Create Audit Bundle', + data: { breadcrumb: 'Create Bundle' }, + loadComponent: () => + import('../features/triage/triage-audit-bundle-new.component').then( + (m) => m.TriageAuditBundleNewComponent, + ), + }, ]; diff --git a/src/Web/StellaOps.Web/src/app/routes/security-risk.routes.ts b/src/Web/StellaOps.Web/src/app/routes/security-risk.routes.ts index e10fff877..85aa061ce 100644 --- a/src/Web/StellaOps.Web/src/app/routes/security-risk.routes.ts +++ b/src/Web/StellaOps.Web/src/app/routes/security-risk.routes.ts @@ -128,15 +128,8 @@ export const SECURITY_RISK_ROUTES: Routes = [ (m) => m.ScanPolicyComponent ), }, - { - path: 'reports', - title: 'Security Reports', - data: { breadcrumb: 'Reports' }, - loadComponent: () => - import('../features/security/security-reports-page.component').then( - (m) => m.SecurityReportsPageComponent - ), - }, + // Reports merged into Security Posture — redirect for bookmarks + { path: 'reports', redirectTo: '/security', pathMatch: 'full' }, { path: 'findings', title: 'Findings Explorer', diff --git a/src/Web/StellaOps.Web/src/app/routes/triage.routes.ts b/src/Web/StellaOps.Web/src/app/routes/triage.routes.ts index acfd565d9..0849b8966 100644 --- a/src/Web/StellaOps.Web/src/app/routes/triage.routes.ts +++ b/src/Web/StellaOps.Web/src/app/routes/triage.routes.ts @@ -20,22 +20,9 @@ export const TRIAGE_ROUTES: Routes = [ loadComponent: () => import('../features/triage/triage-workspace.component').then((m) => m.TriageWorkspaceComponent), }, - { - path: 'audit-bundles/new', - title: 'Create Audit Bundle', - data: { breadcrumb: 'Create Bundle' }, - loadComponent: () => - import('../features/triage/triage-audit-bundle-new.component').then( - (m) => m.TriageAuditBundleNewComponent - ), - }, - { - path: 'audit-bundles', - title: 'Audit Bundles', - data: { breadcrumb: 'Audit Bundles' }, - loadComponent: () => - import('../features/triage/triage-audit-bundles.component').then((m) => m.TriageAuditBundlesComponent), - }, + // Audit bundles moved to /evidence/bundles — keep redirects for bookmarks + { path: 'audit-bundles/new', redirectTo: '/evidence/bundles/new', pathMatch: 'full' }, + { path: 'audit-bundles', redirectTo: '/evidence/bundles', pathMatch: 'full' }, { path: '**', redirectTo: 'artifacts',