-
Notifications
You must be signed in to change notification settings - Fork 0
/
firestore.rules
39 lines (32 loc) · 1.16 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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /projects/{project} {
allow read: if false;
allow write: if get(/databases/$(database)/documents/$(request.auth.uid)).data.admin == true
}
match /portfolios/{portfolio} {
allow read: if false;
allow write: if get(/databases/$(database)/documents/$(request.auth.uid)).data.admin == true
}
match /components/{component} {
allow read: if false;
allow write: if get(/databases/$(database)/documents/$(request.auth.uid)).data.admin == true
}
match /clients/{client} {
allow read: if false;
allow write: if get(/databases/$(database)/documents/$(request.auth.uid)).data.admin == true
}
match /technologies/{technology} {
allow read: if false;
allow write: if get(/databases/$(database)/documents/$(request.auth.uid)).data.admin == true
}
match /categories/{category} {
allow read: if false;
allow write: if get(/databases/$(database)/documents/$(request.auth.uid)).data.admin == true
}
match /{document=**} {
allow read, write: if false;
}
}
}