rules: handle querying all bets

This commit is contained in:
mantikoros 2022-01-05 11:47:39 -06:00
parent 2453fcf1ef
commit 8f3a002840

View File

@ -16,6 +16,10 @@ service cloud.firestore {
allow read;
}
match /{somePath=**}/bets/{betId} {
allow read;
}
match /contracts/comments/{commentId} {
allow read;
allow create: if request.auth != null;