-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetLaunchpadShellConfig.js
More file actions
78 lines (78 loc) · 2.14 KB
/
setLaunchpadShellConfig.js
File metadata and controls
78 lines (78 loc) · 2.14 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
'use strict';
window['sap-ushell-config'] = {
defaultRenderer: 'fiori2',
services: {
NavTargetResolution: {
config: {
enableClientSideTargetResolution: true
}
},
ClientSideTargetResolution: {
adapter: {
config: {
inbounds: {
poetryslamsdisplay: {
semanticObject: 'poetryslams',
action: 'display',
signature: {
parameters: {},
additionalParameters: 'ignored'
},
resolutionResult: {
additionalInformation: 'SAPUI5.Component=poetryslams',
applicationType: 'SAPUI5',
url: '/poetryslams/webapp'
}
},
visitorsdisplay: {
semanticObject: 'visitors',
action: 'display',
signature: {
parameters: {},
additionalParameters: 'allowed'
},
resolutionResult: {
additionalInformation: 'SAPUI5.Component=visitors',
applicationType: 'SAPUI5',
url: '/visitors/webapp'
}
}
}
}
}
},
LaunchPage: {
adapter: {
config: {
groups: [
{
id: 'PoetrySlamManager',
title: 'Poetry Slam Manager',
isPreset: true,
isVisible: true,
isGroupLocked: false,
tiles: [
{
id: 'PoetrySlamsDisplay',
tileType: 'sap.ushell.ui.tile.DynamicTile',
properties: {
title: 'Manage Poetry Slams',
targetURL: '#poetryslams-display'
}
},
{
id: 'VisitorsDisplay',
tileType: 'sap.ushell.ui.tile.DynamicTile',
properties: {
title: 'Manage Visitors and Artists',
targetURL: '#visitors-display'
}
}
]
}
]
}
}
}
}
};