nice setup with v2 with typescript and now ready to just hound out functions

This commit is contained in:
Arjun Patel
2022-01-27 17:56:20 -08:00
parent 36092e8af7
commit 1ac2dcc3a6
25 changed files with 14020 additions and 2684 deletions
+9
View File
@@ -0,0 +1,9 @@
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if
request.time < timestamp.date(2022, 2, 12);
}
}
}