gamebrary/config/firebase/storage.rules
2018-10-18 22:15:28 -07:00

7 lines
138 B
Text
Executable file

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