basic firestore rules

This commit is contained in:
mantikoros 2022-01-05 11:42:43 -06:00
parent e20537bf49
commit 2453fcf1ef

25
firestore.rules Normal file
View File

@ -0,0 +1,25 @@
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /users/{userId} {
allow read;
allow create: if request.auth != null;
}
match /contracts/{contractId} {
allow read;
}
match /contracts/bets/{betId} {
allow read;
}
match /contracts/comments/{commentId} {
allow read;
allow create: if request.auth != null;
}
}
}