RandomChad/storage.rules
2021-10-14 11:44:50 +02:00

9 lines
159 B
Plaintext

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