devbook_ts/storage.rules
2020-05-16 15:04:34 +02:00

7 lines
138 B
Text

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