Modify Firestore Rules to Match Firebase Web side

This commit is contained in:
Ray 2023-11-28 09:28:12 +00:00 committed by GitHub
parent e46c4d4d5a
commit 610c7b4740
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ service cloud.firestore {
//allow read, write: if request.time < timestamp.date(2023, 12, 7); //allow read, write: if request.time < timestamp.date(2023, 12, 7);
// } // }
match /movies/{document=**} { match /movies/{document=**} {
allow read: if true; allow read, write: if true;
} }
} }
} }