Skip to content

Commit 94b1cef

Browse files
committed
comment
1 parent 2c4144a commit 94b1cef

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

dev-packages/e2e-tests/test-applications/node-firebase/firestore.rules

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,7 @@ rules_version='2'
33
service cloud.firestore {
44
match /databases/{database}/documents {
55
match /{document=**} {
6-
// This rule allows anyone with your database reference to view, edit,
7-
// and delete all data in your database. It is useful for getting
8-
// started, but it is configured to expire after 30 days because it
9-
// leaves your app open to attackers. At that time, all client
10-
// requests to your database will be denied.
11-
//
12-
// Make sure to write security rules for your app before that time, or
13-
// else all client requests to your database will be denied until you
14-
// update your rules.
6+
// general access within this test app's emulator is fine
157
allow read, write: if true;
168
}
179
}

0 commit comments

Comments
 (0)