-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathxs-security.json
More file actions
34 lines (34 loc) · 1.55 KB
/
xs-security.json
File metadata and controls
34 lines (34 loc) · 1.55 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
{
"xsappname" : "DEV162",
"scopes" : [
{
"name" : "$XSAPPNAME.Display",
"description" : "display"
},
{
"name" : "$XSAPPNAME.Create",
"description" : "create"
},
{
"name" : "$XSAPPNAME.Delete",
"description" : "delete"
}
],
"role-templates": [
{
"name" : "Viewer",
"description" : "View all records",
"scope-references" : [
"$XSAPPNAME.Display"
]
},
{
"name" : "Editor",
"description" : "Edit and Delete records",
"scope-references" : [
"$XSAPPNAME.Create",
"$XSAPPNAME.Delete"
]
}
]
}