Files
2021-05-26 12:20:35 -05:00

14 lines
221 B
Plaintext

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