Update Firestore rules to tempoarily insecure method, will fix when bothered as not critical

This commit is contained in:
Ray 2023-12-28 05:44:55 +00:00 committed by GitHub
parent 39d696abf6
commit 6c90678dbc
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
// your rules
match /{document=**} {
allow read, write: true;
allow read, write: if true;
}
}
}