forked from SAP-samples/hana-shine-xsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xs-security.json
50 lines (50 loc) · 1.13 KB
/
xs-security.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
{
"xsappname": "shine-admin",
"scopes": [
{
"name": "$XSAPPNAME.JOBSCHEDULER",
"description": "Job Scheduler Scope",
"grant-as-authority-to-apps": ["jobscheduler"]
},
{
"name": "$XSAPPNAME.Display",
"description": "display"
},
{
"name": "$XSAPPNAME.Edit",
"description": "edit"
},
{
"name": "$XSAPPNAME.Delete",
"description": "delete"
},
{
"name": "$XSAPPNAME.DataGenerator",
"description": "data generator"
},
{
"name": "xs_authorization.read",
"description": "Read authorization information from UAA"
},
{
"name": "xs_authorization.write",
"description": "Write authorization information to UAA"
}
],
"role-templates": [
{
"name": "Admin",
"description": "refapps administrator",
"scope-references": [
"$XSAPPNAME.Display",
"$XSAPPNAME.Edit",
"$XSAPPNAME.Delete",
"$XSAPPNAME.DataGenerator",
"xs_authorization.read",
"xs_authorization.write",
"$XSAPPNAME.JOBSCHEDULER",
"xs_controller.read"
]
}
]
}