added saving photos to firebase

This commit is contained in:
2026-06-16 23:18:20 +09:00
parent d614ddb322
commit 1743e7fcbe
9 changed files with 107 additions and 2 deletions

9
storage.rules Normal file
View File

@@ -0,0 +1,9 @@
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read: if true;
allow write: if request.auth != null;
}
}
}