-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconsole-extensions.json
46 lines (46 loc) · 1.12 KB
/
console-extensions.json
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
[
{
"type": "console.perspective",
"properties": {
"id": "redhat-odh",
"name": "RedHat Data Scientist",
"icon": { "$codeRef": "perspective.icon" },
"landingPageURL": { "$codeRef": "perspective.getLandingPageURL" },
"importRedirectURL": { "$codeRef": "perspective.getImportRedirectURL" }
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "enabled-applications",
"perspective": "redhat-odh",
"name": "Enabled Applications",
"href": "/enabledApplications"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "explore-applications",
"perspective": "redhat-odh",
"name": "Explore Applications",
"href": "/exploreApplications"
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/enabledApplications",
"component": { "$codeRef": "EnabledApplications" }
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/exploreApplications",
"component": { "$codeRef": "ExploreApplications" }
}
}
]