-
Notifications
You must be signed in to change notification settings - Fork 0
/
firestore.rules
55 lines (48 loc) · 1.11 KB
/
firestore.rules
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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{path=**}/userPublic/{userId} {
allow read: if true;
}
match /users/{userId} {
allow read;
allow create;
allow update: if request.auth.uid == userId;
allow delete: if request.auth.uid == userId;
match /userPublic/{userId} {
allow read: if true;
allow write: if request.auth.uid == userId;
}
match /python/{scoreId} {
allow read;
allow write;
}
match /javascript/{scoreId} {
allow read;
allow write;
}
}
match /rooms/{roomId} {
allow read;
allow write;
allow update: if request.auth.uid == userId;
allow delete: if request.auth.uid == userId;
}
match /questions/{quetionId} {
allow read;
allow write;
}
match /ranking/{rankingId} {
allow read;
allow write;
match /python/{scoreId} {
allow read;
allow write;
}
match /javascript/{scoreId} {
allow read;
allow write;
}
}
}
}