RandomChad/storage.rules
2021-10-29 18:06:18 +02:00

10 lines
180 B
Plaintext

rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow write: if request.auth!=null;
allow read: if true;
}
}
}