Skip to content

Commit

Permalink
firestore rule as always true
Browse files Browse the repository at this point in the history
  • Loading branch information
Mazuh committed Jul 31, 2023
1 parent 6aa0364 commit 97307ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firestore.rules
Original file line number Diff line number Diff line change
Expand Up @@ -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: if request.time < timestamp.date(2023, 8, 24);
allow read, write: if 1 < 3;
}
}
}

0 comments on commit 97307ab

Please sign in to comment.