api-client/firestore.rules
Liyas Thomas a7cd6395b7 🎉 Completed MVP
2020-01-22 07:27:38 +05:30

8 lines
246 B
Text

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