forked from ecronix/react-most-wanted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.rules.json
110 lines (110 loc) · 3.15 KB
/
database.rules.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"rules": {
".read": "auth != null",
"admins":{
".read": "auth != null",
"$uid":{
".write": "auth != null || root.child('admins/'+auth.uid).exists()"
}
},
"predefined_chat_messages": {
".read": "auth != null",
"$uid":{
".write": "auth != null"
}
},
"users": {
".read": "auth != null",
"$uid": {
".write": "auth != null && ($uid === auth.uid || root.child('admins/'+auth.uid).exists())"
}
},
"user_chats": {
"$uid": {
".read": "auth != null && $uid===auth.uid",
".write": "auth != null && $uid===auth.uid"
}
},
"user_chat_messages": {
"$uid": {
".read": "auth != null && $uid===auth.uid",
".write": "auth != null && $uid===auth.uid"
}
},
"users_count": {
".read": true,
"$uid": {
".write": "auth != null && root.child('admins/'+auth.uid).exists()"
}
},
"provider_count": {
".read": true,
".write": false
},
"roles":{
".read": "auth != null && root.child('admins/'+auth.uid).exists()",
"$uid":{
".write": "auth != null && root.child('admins/'+auth.uid).exists()"
}
},
"role_grants":{
".read": "auth != null && root.child('admins/'+auth.uid).exists()",
"$uid":{
".write": "auth != null && root.child('admins/'+auth.uid).exists()"
}
},
"user_grants":{
".read": "auth != null",
"$uid":{
".write": "auth != null && root.child('admins/'+auth.uid).exists()"
}
},
"user_roles":{
".read": "auth != null && root.child('admins/'+auth.uid).exists()",
"$uid":{
".write": "auth != null && root.child('admins/'+auth.uid).exists()"
}
},
"public_tasks":{
".indexOn": ["userId"],
"$tid":{
".indexOn": ["userId"],
".write": "data.child('userId').val() === auth.uid || newData.child('userId').val() === auth.uid"
}
},
"public_tasks_count":{
".read": true,
".write": "auth != null"
},
"companies":{
".read": "(auth != null && root.child('admins/'+auth.uid).exists()) || root.child('user_grants/'+auth.uid+'/read_companies').exists()",
"$uid":{
".write": "(auth != null && root.child('admins/'+auth.uid).exists()) || (data.exists() && newData.exists() && root.child('user_grants/'+auth.uid+'/edit_company').exists()) || (!data.exists() && newData.exists() && root.child('user_grants/'+auth.uid+'/create_company').exists()) || (data.exists() && !newData.exists() && root.child('user_grants/'+auth.uid+'/delete_company').exists())"
}
},
"public_chats":{
".read": "auth != null",
".write": "auth != null"
},
"private_chats":{
".read": "auth != null",
".write": "auth != null"
},
"private_chat_members":{
".read": "auth != null",
".write": "auth != null"
},
"messages":{
".read": "auth != null",
".write": "auth != null"
},
"user_registrations_per_day":{
".read": true,
".write": false
},
"user_registrations_per_month":{
".read": true,
".write": false
}
}
}