No Description
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.

storage.rules 146B

12345678
  1. rules_version = '2';
  2. service firebase.storage {
  3. match /b/{bucket}/o {
  4. match /{allPaths=**} {
  5. allow read, write: if false;
  6. }
  7. }
  8. }