feat: password reset and firebase security

This commit is contained in:
Kyle Gill
2019-04-22 23:23:27 -07:00
parent 8f61da013b
commit e26475730e
5 changed files with 50 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write;
allow read, write: if request.auth != null;
}
}
}