-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconsole-extensions.json
More file actions
53 lines (53 loc) · 1.16 KB
/
console-extensions.json
File metadata and controls
53 lines (53 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[
{
"type": "console.navigation/href",
"properties": {
"id": "faas-list",
"name": "%plugin__console-functions-plugin~FaaS%",
"href": "/faas",
"perspective": "dev"
}
},
{
"type": "console.navigation/separator",
"properties": {
"id": "faas-separator",
"perspective": "admin",
"section": "workloads",
"insertAfter": "poddisruptionbudgets"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "faas-list-admin",
"name": "%plugin__console-functions-plugin~FaaS%",
"href": "/faas",
"perspective": "admin",
"section": "workloads",
"insertAfter": "faas-separator"
}
},
{
"type": "console.page/route",
"properties": {
"path": "/faas",
"component": { "$codeRef": "FunctionsListPage" }
}
},
{
"type": "console.page/route",
"properties": {
"path": "/faas/create",
"component": { "$codeRef": "FunctionCreatePage" },
"exact": true
}
},
{
"type": "console.page/route",
"properties": {
"path": "/faas/edit/:name",
"component": { "$codeRef": "FunctionEditPage" }
}
}
]