Create FirebaseRules.txt

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

22
FirebaseRules.txt Normal file
View File

@ -0,0 +1,22 @@
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;
}
}
}