first commit

This commit is contained in:
2025-06-03 21:13:56 +09:00
commit e91d481216
171 changed files with 45905 additions and 0 deletions

23
storage.rules Normal file
View File

@@ -0,0 +1,23 @@
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;
}
}
}