-
Notifications
You must be signed in to change notification settings - Fork 2
/
database.rules.json
59 lines (59 loc) · 1.25 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
{
"rules": {
"messages":{
"$msgId":{
".read": "auth != null",
".write": "!data.exists() && newData.child('uid').val() === auth.uid",
".indexOn": "uid"
},
".indexOn": "group_id"
},
"user_messages":{
".read": "auth != null",
".write": "auth != null"
},
"secrets":{
"$id":{
".read": "auth != null",
".write": "!data.exists() && auth.uid != null",
".indexOn": "consumer_key"
},
".indexOn": "consumer_key"
},
"settings":{
".read": true,
".write": "auth != null"
},
"group_members":{
"$gmId":{
".read": "auth != null",
".write": "!data.exists() && auth != null",
".indexOn": "group_id"
},
".indexOn": "uid"
},
"instructors":{
"insId":{
".read": "auth != null",
".write": "auth != null",
".indexOn": "uid"
},
".indexOn": "uid"
},
"questions":{
"qId":{
".read": "auth != null",
".write": "auth != null",
".indexOn": "group_id"
},
".indexOn": "group_id"
},
"answers":{
"aId":{
".read": "auth != null",
".write": "auth != null"
},
".indexOn": "question_id"
}
}
}