mirror of
https://github.com/tappollo/booster.git
synced 2026-06-17 08:59:39 +08:00
9 lines
198 B
Plaintext
9 lines
198 B
Plaintext
service firebase.storage {
|
|
match /b/{bucket}/o {
|
|
match /users/{userId}/{allDocument=**} {
|
|
allow read;
|
|
allow write: if request.auth!=null && request.auth.uid == userId;
|
|
}
|
|
}
|
|
}
|