9 lines
246 B
Plaintext
9 lines
246 B
Plaintext
// Allow read/write access on all documents to any user signed in to the application
|
|
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
match /{document=**} {
|
|
allow read, write: if request.auth.uid != null;
|
|
}
|
|
}
|
|
}
|