-
Notifications
You must be signed in to change notification settings - Fork 1
/
database.rules.json
157 lines (157 loc) · 3.39 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"rules": {
// Users
"users": {
".read": true,
".write": true
},
// Users in session
"usersInSession": {
".read": true,
".write": true
},
//free times by users
"freeTimesByUsers": {
".read": true,
".write": true
},
// Index for user name, used for user searching by name
"userNameIndex": {
".read": true,
".write": true
},
// Sessions
"sessions": {
".read": true,
".write": true,
".indexOn": ["listed"]
},
// Public sessions
"listedSessions": {
".read": true,
".write": true
},
// Sessions by year-week-day
"sessionsByYwd": {
".read": true,
".write": true
},
// Sessions By Grades
"sessionsByGrade": {
".read": true,
".write":true
},
// Sessions By Class names
"sessionsByClassStr": {
".read": true,
".write":true
},
// Sessions By Weeks
"sessionsByWeeks": {
".read": true,
".write":true
},
//SessionsByTags
"sessionsByTags": {
".read": true,
".write": true
},
//SessionsBySubject
"sessionsBySubject": {
".read": true,
".write": true
},
// Session permissions
"sessionPermissions": {
"$sessionKey": {
".read": true,
".write": true,
// Make sure that the session exists when writing permissions
".validate": "root.child('sessions/' + $sessionKey).exists()"
}
},
// Ratings organized by sessions it belongs to
"ratingsBySessions": {
".read": true,
".write": true
},
// Chats
"chats": {
".read": true,
".write": true
},
// Chat messages
"chatMessages": {
"$chatKey": {
".read": true,
".write": true,
// Make sure that the chat room exists when writing messages
".validate": "root.child('chats/' + $chatKey).exists()"
}
},
// Chat permissions
"chatPermissions": {
"$chatKey": {
".read": true,
".write": true,
// Make sure that the chat room exists when writing permissions
".validate": "root.child('chats/' + $chatKey).exists()"
}
},
// Status messages
"statusMessages": {
"$chatKey": {
".read": true,
".write": true,
// Make sure that the chat room exists when writing statuses
".validate": "root.child('chats/' + $chatKey).exists()"
}
},
// Whiteboards
"whiteboards": {
".read": true,
".write": true
},
// Whiteboard permissions
"whiteboardPermissions": {
"$whiteboardKey": {
".read": true,
".write": true,
// Make sure that the whiteboard exists when writing markings
".validate": "root.child('whiteboards/' + $whiteboardKey).exists()"
}
},
// Whiteboard markings
"whiteboardMarkings": {
"$whiteboardKey": {
".read": true,
".write": true,
// Make sure that the whiteboard exists when writing markings
".validate": "root.child('whiteboards/' + $whiteboardKey).exists()"
}
},
// Whiteboard text
"whiteboardText": {
"$whiteboardKey": {
".read": true,
".write": true,
// Make sure that the whiteboard exists when writing markings
".validate": "root.child('whiteboards/' + $whiteboardKey).exists()"
}
},
// Whiteboard images
"whiteboardImages": {
"$whiteboardKey": {
".read": true,
".write": true,
// Make sure that the whiteboard exists when writing markings
".validate": "root.child('whiteboards/' + $whiteboardKey).exists()"
}
},
// Whiteboards organized by the sessions it belongs to
"whiteboardsBySessions": {
".read": true,
".write": true
}
}
}