-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathappconfig.json
75 lines (75 loc) · 1.76 KB
/
appconfig.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "Extension with Shell navigation",
"provider": "SAP FSM",
"description": "Sample extension inside Shell with Shell navigation",
"version": "1.0.0",
"icon": "https://raw.githubusercontent.com/SAP-samples/fsm-extension-sample/master/samples/with-shell-navigation/icon.png",
"translations": [
{
"lang": "de",
"name": "Erweiterung mit Shell Navigation",
"description": "Beispielerweiterung innerhalb der Shell mit Shell Navigation"
}
],
"useShellSDK": true,
"outletPositions": [
"SHELL_HOME_SCREEN"
],
"shellNavigation": {
"icon": "activities",
"sideNavigation": [
{
"pathSegment": "home",
"labelTranslations": [
{
"lang": "en",
"value": "Home"
},
{
"lang": "de",
"value": "Startseite"
}
],
"viewUrl": "/#/",
"icon": "home",
"isDefault": true,
"children": []
},
{
"pathSegment": "actions",
"labelTranslations": [
{
"lang": "en",
"value": "Actions"
},
{
"lang": "de",
"value": "Aktionen"
}
],
"viewUrl": null,
"icon": "activity-2",
"isDefault": false,
"children": [
{
"pathSegment": "edit",
"labelTranslations": [
{
"lang": "en",
"value": "Edit"
},
{
"lang": "de",
"value": "Editieren"
}
],
"viewUrl": "/#/actions/edit",
"icon": null,
"isDefault": false,
"children": []
}
]
}
]
}
}