Delete FirebaseRules.txt

This commit is contained in:
Ray 2023-10-11 00:08:12 +11:00 committed by GitHub
parent 861be10d2e
commit e83ec5066b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// This rule allows anyone with your Firestore database reference to view, edit,
// and delete all data in your Firestore database. It is useful for getting
// started, but it is configured to expire after 30 days because it
// leaves your app open to attackers. At that time, all client
// requests to your Firestore database will be denied.
//
// Make sure to write security rules for your app before that time, or else
// all client requests to your Firestore database will be denied until you Update
// your rules
//match /{document=**} {
//allow read, write: if request.time < timestamp.date(2023, 9, 28);
// }
match /books/{document=**} {
allow read: if true;
}
}
}