Skip to content

Commit

Permalink
Merge pull request #1 from coreofscience/support-db-changes
Browse files Browse the repository at this point in the history
Allow accessing trees collection
  • Loading branch information
dani-vh authored Jan 11, 2023
2 parents 5458481 + d4fbd38 commit 8e32f2b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions firestore.rules
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ service cloud.firestore {
allow read: if false;
}
match /results/{document=**} {
allow read: if
request.time < timestamp.date(2021, 11, 10);
allow read: if true;
}
match /trees/{treeId} {
allow read, write: if true
}
match /{document=**} {
allow read, write: if false
Expand Down

0 comments on commit 8e32f2b

Please sign in to comment.