Update Firestore rules

This commit is contained in:
Ray 2023-12-28 05:39:29 +00:00 committed by GitHub
parent d4f3333706
commit 30ebf7ca56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ service cloud.firestore {
// all client requests to your Firestore database will be denied until you Update // all client requests to your Firestore database will be denied until you Update
// your rules // your rules
match /{document=**} { match /{document=**} {
allow read, write: if request.time < timestamp.date(2024, 1, 27); allow read, write: true;
} }
} }
} }