24 lines
499 B
Plaintext
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;
|
|
}
|
|
}
|
|
}
|
|
|