forked from SAP-archive/com.sap.openSAP.hana5.example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxs-security.json
34 lines (34 loc) · 905 Bytes
/
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
{
"xsappname": "openSAP5-ex",
"scopes": [{
"name": "$XSAPPNAME.Display",
"description": "display"
}, {
"name": "$XSAPPNAME.Create",
"description": "create"
}, {
"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": "Viewer",
"description": "View all records",
"scope-references": ["$XSAPPNAME.Display"]
}, {
"name": "Editor",
"description": "Edit and Delete records",
"scope-references": ["$XSAPPNAME.Create", "$XSAPPNAME.Edit", "$XSAPPNAME.Delete", "$XSAPPNAME.Display", "$XSAPPNAME.DataGenerator"]
}]
}