Skip to content

Commit

Permalink
fix: close off all public access to firestore
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Jun 10, 2024
1 parent 480c15c commit 99c96aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firestore.rules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read: if true;
allow read, write: if false;
}
}
}

0 comments on commit 99c96aa

Please sign in to comment.