forked from anihalaney/rwa-trivia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirestore-rules.txt
45 lines (37 loc) · 1.28 KB
/
firestore-rules.txt
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
service cloud.firestore {
match /databases/{database}/documents {
match /users/{userId} {
allow read: if request.auth != null && request.auth.uid == userId;
}
match /{document=**} {
allow read, write: if request.auth != null && get(/databases/$(database)/documents/users/$(request.auth.uid)).data.roles.admin;
}
match /categories {
match /{document=**} {
allow read;
}
}
match /lists {
match /{document=**} {
allow read;
}
}
match /questions {
match /{document=**} {
allow read: if request.auth != null && request.auth.uid == resource.data.created_uid;
}
}
match /unpublished_questions {
match /{document=**} {
allow read, update: if request.auth != null && request.auth.uid == resource.data.created_uid;
allow create: if request.auth != null && request.auth.uid == request.resource.data.created_uid;
}
}
match /games {
match /{document=**} {
allow read, update: if request.auth != null && (request.auth.uid == resource.data.playerId_0 || request.auth.uid == resource.data.playerId_1);
allow create: if request.auth != null && request.auth.uid == request.resource.data.playerId_0;
}
}
}
}