-
Notifications
You must be signed in to change notification settings - Fork 1
/
firestore.rules
59 lines (45 loc) · 1.37 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
56
57
58
59
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
function isAdmin() {
return request.auth != null && get(/databases/$(database)/documents/users/$(request.auth.uid)).data.role == 'admin';
}
match /{document=**} {
allow read, write: if false;
}
match /branches/{docId} {
allow read, write: if isAdmin();
}
match /orgs/{orgId} {
function belongsToOrg() {
return orgId in get(/databases/$(database)/documents/users/$(request.auth.uid)).data.orgs;
}
allow read: if isAdmin() || belongsToOrg();
allow write: if isAdmin();
match /environments/{envId} {
allow read: if isAdmin() || belongsToOrg();
allow write: if isAdmin();
match /services/{serviceId} {
allow read: if isAdmin() || belongsToOrg();
allow write: if isAdmin()
match /deployments/{deploymentId} {
allow read: if isAdmin() || belongsToOrg();
allow write: if isAdmin()
}
}
}
}
match /users/{userId} {
allow read: if request.auth != null && request.auth.uid == userId;
}
match /pullRequests/{prId} {
allow read: if isAdmin();
}
match /authors/{authorId} {
allow read: if isAdmin();
match /pullRequests/{prId} {
allow read: if isAdmin();
}
}
}
}