mirror of
https://github.com/zhigang1992/reactfire.git
synced 2026-01-12 22:51:28 +08:00
7 lines
160 B
Plaintext
7 lines
160 B
Plaintext
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
match /{document=**} {
|
|
allow read, write: if request.auth.uid != null;
|
|
}
|
|
}
|
|
} |