Skip to content

Commit

Permalink
Update shortlisted navigations
Browse files Browse the repository at this point in the history
  • Loading branch information
ab-smith committed Dec 15, 2024
1 parent c19cf9d commit 198f744
Showing 1 changed file with 42 additions and 3 deletions.
45 changes: 42 additions & 3 deletions frontend/src/lib/components/CommandPalette/paletteData.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { goto } from '$app/navigation';
import * as m from '$paraglide/messages';

export interface NavigationLink {
Expand All @@ -8,11 +7,51 @@ export interface NavigationLink {

export const navigationLinks: NavigationLink[] = [
{
label: m.analytics(),
label: 'analytics',
href: '/'
},
{
label: m.settings(),
label: 'myAssignments',
href: '/my-assignments'
},
{
label: 'domains',
href: '/folders'
},
{
label: 'assets',
href: '/assets'
},
{
label: 'complianceAssessments',
href: '/compliance-assessments'
},
{
label: 'riskAssessments',
href: '/risk-assessments'
},
{
label: 'actionPlan',
href: '/applied-controls'
},
{
label: 'evidences',
href: '/evidences'
},
{
label: 'xRays',
href: '/x-rays'
},
{
label: 'libraries',
href: '/libraries'
},
{
label: 'myProfile',
href: '/my-profile'
},
{
label: 'settings',
href: '/settings'
}
];

0 comments on commit 198f744

Please sign in to comment.