mirror of
https://github.com/zhigang1992/firecms.git
synced 2026-04-28 11:55:45 +08:00
Useful for using the local emulator. - Fixed initial values bug when creating new entities and validation. - Added `showError` prop to CMSFieldProps
9 lines
201 B
Plaintext
9 lines
201 B
Plaintext
rules_version = '2';
|
|
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
match /{document=**} {
|
|
allow read: if true;
|
|
allow write: if request.auth.uid != null;
|
|
}
|
|
}
|
|
} |