diff --git a/firestore.rules b/firestore.rules index 66b84c8..462d939 100644 --- a/firestore.rules +++ b/firestore.rules @@ -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; } } -} +} \ No newline at end of file