File tree Expand file tree Collapse file tree 2 files changed +49
-1
lines changed
src/Exceptionless.Web/ClientApp/src/routes/(app) Expand file tree Collapse file tree 2 files changed +49
-1
lines changed Original file line number Diff line number Diff line change
1
+ import ClientConfig from 'lucide-svelte/icons/braces' ;
2
+ import ApiKey from 'lucide-svelte/icons/key' ;
3
+ import Integration from 'lucide-svelte/icons/plug-2' ;
4
+ import Settings from 'lucide-svelte/icons/settings' ;
5
+ import Webhook from 'lucide-svelte/icons/webhook' ;
6
+
7
+ import type { NavigationItem } from '../../routes' ;
8
+
9
+ export const routes : NavigationItem [ ] = [
10
+ {
11
+ group : 'Project Settings' ,
12
+ href : '/next/project/[id]/manage' ,
13
+ icon : Settings ,
14
+ title : 'General'
15
+ } ,
16
+ {
17
+ group : 'Project Settings' ,
18
+ href : '/next/project/[id]/manage/apikeys' ,
19
+ icon : ApiKey ,
20
+ title : 'API Keys'
21
+ } ,
22
+ {
23
+ group : 'Project Settings' ,
24
+ href : '/next/project/[id]/manage/settings' ,
25
+ icon : Settings ,
26
+ title : 'Settings'
27
+ } ,
28
+ {
29
+ group : 'Project Settings' ,
30
+ href : '/next/project/[id]/manage/config' ,
31
+ icon : ClientConfig ,
32
+ title : 'Client Configuration'
33
+ } ,
34
+ {
35
+ group : 'Project Settings' ,
36
+ href : '/next/project/[id]/manage/webhooks' ,
37
+ icon : Webhook ,
38
+ title : 'Webhooks'
39
+ } ,
40
+ {
41
+ group : 'Project Settings' ,
42
+ href : '/next/project/[id]/manage/integrations' ,
43
+ icon : Integration ,
44
+ title : 'Integrations'
45
+ }
46
+ ] ;
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import GitHub from 'lucide-svelte/icons/github';
9
9
import type { NavigationItem } from '../routes' ;
10
10
11
11
import { routes as accountRoutes } from './account/routes' ;
12
+ import { routes as projectRoutes } from './project/routes' ;
12
13
13
14
export const routes : NavigationItem [ ] = [
14
15
{
@@ -64,5 +65,6 @@ export const routes: NavigationItem[] = [
64
65
openInNewTab : true ,
65
66
title : 'API'
66
67
} ,
67
- ...accountRoutes
68
+ ...accountRoutes ,
69
+ ...projectRoutes
68
70
] ;
You can’t perform that action at this time.
0 commit comments