You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

firestore.rules 273B

12345678910
  1. rules_version = '2';
  2. service cloud.firestore {
  3. match /databases/{database}/documents {
  4. match /{document=**} {
  5. allow get, write: if true;
  6. // never set this to true, otherwise anyone can delete anyone else's drawing.
  7. allow list: if false;
  8. }
  9. }
  10. }