mirror of
https://github.com/reiyua/RaysBookClub.git
synced 2026-01-20 15:37:47 +00:00
12 lines
314 B
Text
12 lines
314 B
Text
rules_version = '2';
|
|
|
|
// Craft rules based on data in your Firestore database
|
|
// allow write: if firestore.get(
|
|
// /databases/(default)/documents/users/$(request.auth.uid)).data.isAdmin;
|
|
service firebase.storage {
|
|
match /b/{bucket}/o {
|
|
match /{allPaths=**} {
|
|
allow read, write: if true;
|
|
}
|
|
}
|
|
}
|