Skip to content

Commit

Permalink
update app rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ryzizub committed Nov 7, 2019
1 parent 88558a9 commit 28520eb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions firestore.rules
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ service cloud.firestore {
match /talks/{document=**} {
allow read;
}
match /users/{document=**} {
allow write, read: if request.auth.uid != null;
}
match /numbersOnBadges/{document=**} {
allow write, read: if request.auth.uid != null;
}
match /rooms/{document=**} {
allow read;
}
Expand Down

0 comments on commit 28520eb

Please sign in to comment.