Files
onearmy-community-platform/firebase.storage.rules
2021-12-02 17:44:20 +01:00

9 lines
179 B
Plaintext

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