-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.rules.json
88 lines (88 loc) · 2.59 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
{
"rules": {
"site": {
".read": true,
".write": false
},
"ConceptExerciseMap": {
".read": "auth != null",
".write": "auth != null && root.child('Users').child(auth.uid).child('permission').val() === 'author'"
},
"ConceptShortDescriptions": {
".read": "auth != null",
".write": "auth != null && root.child('Users').child(auth.uid).child('permission').val() === 'author'"
},
"Users": {
"$uid": {
".read": "auth != null && auth.uid == $uid",
"waiverStatus": {
".write": "auth != null && auth.uid == $uid"
},
"permission": {
".write": "false"
},
"bktParams": {
".read": "auth != null && auth.uid == $uid",
".write": "auth != null && auth.uid == $uid"
},
"state": {
".write": "auth != null && auth.uid == $uid"
},
"userExperience": {
".write": "auth != null && auth.uid == $uid"
},
"condition": {
".read": "auth != null && auth.uid == $uid",
".write": "auth != null && auth.uid == $uid"
},
"isAdult": {
".read": "auth != null && auth.uid == $uid",
".write": "auth != null && auth.uid == $uid"
},
"createdAt": {
".read": "auth != null && auth.uid == $uid",
".write": "auth != null && auth.uid == $uid"
},
"Data": {
"AnswerSubmission": {
".read": "auth != null && auth.uid == $uid",
".write": "auth != null && auth.uid == $uid"
},
"InstructionsRead": {
".write": "auth != null && auth.uid == $uid"
},
"NewPageVisit": {
".indexOn": ["concept"],
".write": "auth != null && auth.uid == $uid"
},
"SessionEvents": {
".write": "auth != null && auth.uid == $uid"
},
}
}
},
"Exercises": {
".read": "auth != null",
".write": "auth != null && root.child('Users').child(auth.uid).child('permission').val() === 'author'"
},
"Instructions": {
".read": "auth != null",
".write": "auth != null && root.child('Users').child(auth.uid).child('permission').val() === 'author'"
},
"static": {
".read": "auth != null"
},
"surveyLinks": {
".read": "auth != null",
".write": "auth != null"
},
"UsersNcme2019" : {
".read" : "auth != null",
".write": "auth != null"
},
"ExerciseAssignmentNcme2019" :{
".read" : "auth != null",
".write": "auth != null"
}
}
}