forked from Krishna3451/FounderBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
firestore.rules
39 lines (33 loc) · 877 Bytes
/
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 {
// Helper functions
function isSignedIn() {
return request.auth != null;
}
function isOwner(userId) {
return request.auth.uid == userId;
}
// Developers collection
match /developers/{userId} {
allow read: if isSignedIn();
allow write: if isOwner(userId);
}
// Recruiters collection
match /recruiters/{userId} {
allow read: if isSignedIn();
allow write: if isOwner(userId);
}
// Ideas collection
match /ideas/{ideaId} {
allow read: if isSignedIn();
allow write: if isSignedIn();
}
// Applications collection
match /applications/{applicationId} {
allow read: if isSignedIn();
allow create: if isSignedIn();
allow update: if isSignedIn();
}
}
}