mirror of
https://github.com/xavidop/cardex.git
synced 2026-08-28 17:01:07 +00:00
fix: firestore rules
This commit is contained in:
+3
-2
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user