api-client/storage.rules

8 lines
138 B
Text
Raw Normal View History

2019-10-03 09:46:39 +00:00
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth!=null;
}
}
}