CS307-Team24/storage.rules
2019-09-12 14:33:13 -04:00

8 lines
138 B
Plaintext

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