-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathaccessRules.json
More file actions
20 lines (20 loc) · 2.56 KB
/
Copy pathaccessRules.json
File metadata and controls
20 lines (20 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"role": "Document Manager",
"rules":[
{"path":"/Documents/*.*", "role": "Document Manager", "read":"allow", "write": "allow", "writeContents": null, "download": "allow", "upload": null, "isFile": true},
{"path":"/*.png", "role": "Document Manager", "read":"allow", "write": "deny", "writeContents": null, "download": "deny", "upload": null, "isFile": true},
{"path":"/Documents/*.png", "role": "Document Manager", "read": "deny", "write": "allow", "writeContents": null, "download": "allow", "upload": null, "isFile": true},
{"path":"/2.*", "role": "Document Manager", "read": "allow", "write": "allow", "writeContents": null, "download": "deny", "upload": null, "isFile": true},
{"path":"/Documents/2.*", "role": "Document Manager", "read": "deny", "write": "deny", "writeContents": null, "download": "allow", "upload": null, "isFile": true},
{"path":"/2.png", "role": "Document Manager", "read": "allow", "write": "allow", "writeContents": null, "download": "allow", "upload": null, "isFile": true},
{"path":"/Documents/2.png", "role": "Document Manager", "read": "deny", "write": "deny", "writeContents": null, "download": "deny", "upload": null, "isFile": true},
{"path":"/text", "role": "Document Manager", "read": "allow", "write": "allow", "writeContents": null, "download": "allow", "upload": null, "isFile": true},
{"path":"/Documents/text", "role": "Document Manager", "read": "allow", "write": "deny", "writeContents": null, "download": "deny", "upload": null, "isFile": true},
{"path":"*", "role": "Document Manager", "read": "allow", "write": "deny", "writeContents": "deny", "download": "deny", "upload": "deny", "isFile": false},
{"path":"/", "role": "Document Manager", "read": "allow", "write": "deny", "writeContents": "deny", "download": "deny", "upload": "deny", "isFile": false},
{"path":"/Documents", "role": "Document Manager", "read": "allow", "write": "deny", "writeContents": "allow", "download": "deny", "upload": "allow", "isFile": false},
{"path":"/Documents/*", "role": "Document Manager", "read": "allow", "write": "allow", "writeContents": "allow", "download": "allow", "upload": "allow", "isFile": false},
{"path":"/Music.png", "role": "Document Manager", "read": "allow", "write": "allow", "writeContents": "allow", "download": "allow", "upload": "allow", "isFile": false},
{"path":"/Documents/Music.png", "role": "Document Manager", "read": "allow", "write": "allow", "writeContents": "allow", "download": "deny", "upload": "deny", "isFile": false}
]
}