mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-06-10 06:59:29 +08:00
14 lines
221 B
Plaintext
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;
|
|
}
|
|
}
|
|
}
|
|
|