fix: from reading from firestore

This commit is contained in:
xavidop
2025-07-23 16:52:58 +02:00
parent 7ca5c6a572
commit f1edae23ce
3 changed files with 20 additions and 3 deletions
+3 -2
View File
@@ -2,9 +2,10 @@ rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// Temporarily allow all authenticated users to test auth
// Allow all operations in emulator for development
// This will only apply when using Firebase emulators
match /{document=**} {
allow read, write: if request.auth != null;
allow read, write: if true;
}
}
}