Files
firecms/example/firestore.rules
francesco ff2c8dcc91 - onFirebaseInit callback on the CMSApp called after Firebase initialisation.
Useful for using the local emulator.
- Fixed initial values bug when creating new entities and validation.
- Added `showError` prop to CMSFieldProps
2021-01-02 13:11:09 +01:00

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;
}
}
}