🎉 Completed MVP

This commit is contained in:
Liyas Thomas
2020-01-22 07:27:38 +05:30
parent 43d95a2271
commit a7cd6395b7
6 changed files with 97 additions and 17 deletions

View File

@@ -1,7 +1,8 @@
// 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;
allow read, write: if request.auth.uid != null;
}
}
}