forked from pivotal-cf/pairist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
firestore.rules
74 lines (60 loc) · 2.26 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
function authenticated() {
return request.auth.uid != null && request.auth.token.email_verified == true && request.auth.token.pairistValidEmail == true;
}
function isTeamMember(teamId) {
return request.auth.uid in get(/databases/$(database)/documents/teamMembers/$(teamId)).data;
}
match /{document=**} {
allow read, write: if false;
}
match /userRefresh/{userId} {
allow read: if request.auth.uid != null && userId == request.auth.uid;
allow write: if false;
}
match /additionalUserInfo/{userId} {
allow read: if authenticated()
allow write: if request.auth.uid != null && userId == request.auth.uid;
}
match /teamMembers/{teamId} {
allow read: if authenticated() && isTeamMember(teamId);
allow write: if false;
}
match /memberTeams/{userId} {
allow read: if authenticated() && userId == request.auth.uid;
allow write: if false;
}
match /teamHistories/{teamId} {
allow read: if authenticated() && isTeamMember(teamId);
allow write: if false;
}
match /teams/{teamId} {
allow read: if authenticated() && isTeamMember(teamId);
allow create: if false;
allow update: if authenticated() && isTeamMember(teamId);
allow delete: if false;
}
match /teams/{teamId}/lists/{document=**} {
allow read: if authenticated() && isTeamMember(teamId);
allow write: if authenticated() && isTeamMember(teamId);
}
match /teams/{teamId}/tracks/{document=**} {
allow read: if authenticated() && isTeamMember(teamId);
allow write: if authenticated() && isTeamMember(teamId);
}
match /teams/{teamId}/roles/{document=**} {
allow read: if authenticated() && isTeamMember(teamId);
allow write: if authenticated() && isTeamMember(teamId);
}
match /teams/{teamId}/people/{document=**} {
allow read: if authenticated() && isTeamMember(teamId);
allow write: if authenticated() && isTeamMember(teamId);
}
match /teams/{teamId}/lanes/{document=**} {
allow read: if authenticated() && isTeamMember(teamId);
allow write: if authenticated() && isTeamMember(teamId);
}
}
}