-
Notifications
You must be signed in to change notification settings - Fork 0
/
cds-security-multitenant.json
56 lines (56 loc) · 1.26 KB
/
cds-security-multitenant.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
{
"xsappname": "employee-management",
"tenant-mode": "shared",
"scopes": [
{
"name": "$XSAPPNAME.manager",
"description": "Manager for Employee Management Portal"
},
{
"name": "$XSAPPNAME.mtcallback",
"description": "Multi Tenancy Callback Access",
"grant-as-authority-to-apps": [
"$XSAPPNAME(application,sap-provisioning,tenant-onboarding)"
]
},
{
"name": "$XSAPPNAME.mtdeployment",
"description": "Scope to trigger a re-deployment of the database artifacts"
},
{
"name": "$XSAPPNAME.ExtendCDS",
"description": "Extend your own tenant's models"
},
{
"name": "$XSAPPNAME.ExtendCDSdelete",
"description": "Undeploy your own tenant's extensions"
}
],
"attributes": [],
"role-templates": [
{
"name": "manager",
"description": "Manager for Employee Management Portal",
"scope-references": [
"$XSAPPNAME.manager"
],
"attribute-references": []
},
{
"name": "Extension_Developer",
"description": "CDS Extension Developer",
"scope-references": [
"$XSAPPNAME.ExtendCDS"
],
"attribute-references": []
},
{
"name": "Extension_Admin",
"description": "CDS Extension Administrator",
"scope-references": [
"$XSAPPNAME.ExtendCDS",
"$XSAPPNAME.ExtendCDSdelete"
]
}
]
}