mirror of
https://github.com/xavidop/cardex.git
synced 2026-08-28 21:01:18 +00:00
11 lines
276 B
Plaintext
11 lines
276 B
Plaintext
rules_version = '2';
|
|
|
|
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
// Allow all operations in emulator for development
|
|
// This will only apply when using Firebase emulators
|
|
match /{document=**} {
|
|
allow read, write: if true;
|
|
}
|
|
}
|
|
} |