Files
bobu/storage.rules
2025-06-03 21:13:56 +09:00

24 lines
499 B
Plaintext

rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /ckeditor_uploads/{allPaths=**} {
allow read: if true;
allow write: if request.auth != null;
}
// (Optional) Allow similar rules for other folders
match /thumbnails/{allPaths=**} {
allow read: if true;
allow write: if request.auth != null;
}
match /boards/{allPaths=**} {
allow read: if true;
allow write: if request.auth != null;
}
}
}