zakscode/storage.rules

9 lines
152 B
Plaintext
Raw Normal View History

2019-04-21 16:59:20 -04:00
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read;
allow write: if request.auth != null;
}
}
}