2020-01-22 01:57:38 +00:00
|
|
|
// Allow read/write access on all documents to any user signed in to the application
|
2019-10-03 09:46:39 +00:00
|
|
|
service cloud.firestore {
|
|
|
|
|
match /databases/{database}/documents {
|
|
|
|
|
match /{document=**} {
|
2020-01-22 01:57:38 +00:00
|
|
|
allow read, write: if request.auth.uid != null;
|
2019-10-03 09:46:39 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|