-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdatabase.rules.json
More file actions
34 lines (34 loc) · 980 Bytes
/
database.rules.json
File metadata and controls
34 lines (34 loc) · 980 Bytes
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
{
"rules": {
"users": {
".read":"auth!=null && root.child('users/'+auth.uid+'/type').val() ==='admin'",
".indexOn":["name"],
"$uid": {
".read": "auth != null",
".write": "auth != null && (root.child('users/'+auth.uid+'/type').val() ==='admin' || $uid === auth.uid)"
}
},
"polls": {
".indexOn": ["dateCreated", "dateExpiration"],
".read": "auth!=null",
".write": "auth!=null && root.child('users/'+auth.uid+'/type').val() ==='admin'"
},
"questions": {
"$poll": {
".read": "auth!=null",
".write": "auth!=null",
".indexOn": [
"votes"
]
}
},
"results": {
"$poll":{
"$uid":{
".read":"auth!=null && (root.child('users/'+auth.uid+'/type').val() ==='admin' || $uid === auth.uid)",
".write":"auth!=null && (root.child('users/'+auth.uid+'/type').val() ==='admin' || $uid === auth.uid)"
}
}
}
}
}