-
Notifications
You must be signed in to change notification settings - Fork 7
/
firestore.rules
52 lines (52 loc) · 1.5 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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /builds/{build} {
allow read, write: if request.auth != null &&
(request.auth.uid == request.resource.data.authorUid) || (request.auth.uid == resource.data.authorUid);
}
match /builds/{build} {
allow read;
allow update: if (request.resource.data.diff(resource.data).affectedKeys()
.hasOnly(['views', 'likes', 'upvotes', 'downvotes', 'comments']));
}
}
match /databases/{database}/documents {
match /creators/{creator} {
allow read, write: if request.auth != null;
}
match /creators/{creator} {
allow read;
}
}
match /databases/{database}/documents {
match /comments/{comment} {
allow read, write: if request.auth != null;
}
match /comments/{comment} {
allow read;
}
}
match /databases/{database}/documents {
match /favorites/{userId} {
allow read, write: if request.auth != null && request.auth.uid == userId;
}
}
match /databases/{database}/documents {
match /users/{userId} {
allow read: if request.auth != null && request.auth.uid == userId;
}
}
match /databases/{database}/documents {
match /contributors/{contributor} {
allow read;
allow update: if (request.resource.data.diff(resource.data).affectedKeys()
.hasOnly(['boCount', 'viewCount']));
}
}
match /databases/{database}/documents {
match /home/{home} {
allow read;
}
}
}