forked from dcalise/miso
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.rules.json
More file actions
33 lines (32 loc) · 3.14 KB
/
database.rules.json
File metadata and controls
33 lines (32 loc) · 3.14 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
{
"rules": {
"products" : {
".read": "auth.token.email.endsWith('@cision.com') || auth.token.email.endsWith('@prnewswire.com') || auth.token.email.endsWith('@prnewswire.co.uk') || auth.token.email.endsWith('@multivu.com') || auth.token.email.endsWith('@gorkana.com') || auth.token.email.endsWith('@newswire.ca')",
".write": "auth.token.email.endsWith('@cision.com') || auth.token.email.endsWith('@prnewswire.com') || auth.token.email.endsWith('@prnewswire.co.uk') || auth.token.email.endsWith('@multivu.com') || auth.token.email.endsWith('@gorkana.com') || auth.token.email.endsWith('@newswire.ca')"
},
"locations" : {
".read": "true",
".write": "auth.token.email.endsWith('@cision.com') || auth.token.email.endsWith('@prnewswire.com') || auth.token.email.endsWith('@prnewswire.co.uk') || auth.token.email.endsWith('@multivu.com') || auth.token.email.endsWith('@gorkana.com') || auth.token.email.endsWith('@newswire.ca')"
},
"labels" : {
".read": "true",
".write": "auth.token.email.endsWith('@cision.com') || auth.token.email.endsWith('@prnewswire.com') || auth.token.email.endsWith('@prnewswire.co.uk') || auth.token.email.endsWith('@multivu.com') || auth.token.email.endsWith('@gorkana.com') || auth.token.email.endsWith('@newswire.ca')"
},
"features" : {
".read": "auth.token.email.endsWith('@cision.com') || auth.token.email.endsWith('@prnewswire.com') || auth.token.email.endsWith('@prnewswire.co.uk') || auth.token.email.endsWith('@multivu.com') || auth.token.email.endsWith('@gorkana.com') || auth.token.email.endsWith('@newswire.ca')",
".write": "auth.token.email.endsWith('@cision.com') || auth.token.email.endsWith('@prnewswire.com') || auth.token.email.endsWith('@prnewswire.co.uk') || auth.token.email.endsWith('@multivu.com') || auth.token.email.endsWith('@gorkana.com') || auth.token.email.endsWith('@newswire.ca')"
},
"accounts" : {
".read": "auth.token.email.endsWith('@cision.com') || auth.token.email.endsWith('@prnewswire.com') || auth.token.email.endsWith('@prnewswire.co.uk') || auth.token.email.endsWith('@multivu.com') || auth.token.email.endsWith('@gorkana.com') || auth.token.email.endsWith('@newswire.ca')",
".write": "auth.token.email.endsWith('@cision.com') || auth.token.email.endsWith('@prnewswire.com') || auth.token.email.endsWith('@prnewswire.co.uk') || auth.token.email.endsWith('@multivu.com') || auth.token.email.endsWith('@gorkana.com') || auth.token.email.endsWith('@newswire.ca')"
},
"comments" : {
".read": "auth.token.email.endsWith('@cision.com') || auth.token.email.endsWith('@prnewswire.com') || auth.token.email.endsWith('@prnewswire.co.uk') || auth.token.email.endsWith('@multivu.com') || auth.token.email.endsWith('@gorkana.com') || auth.token.email.endsWith('@newswire.ca')",
".write": "auth.token.email.endsWith('@cision.com') || auth.token.email.endsWith('@prnewswire.com') || auth.token.email.endsWith('@prnewswire.co.uk') || auth.token.email.endsWith('@multivu.com') || auth.token.email.endsWith('@gorkana.com') || auth.token.email.endsWith('@newswire.ca')"
},
"users" : {
".read": "auth != null",
".write": "auth != null"
}
}
}