Skip to content

Commit

Permalink
Update firestore.rules (firebase#629)
Browse files Browse the repository at this point in the history
Fixing a typo.
  • Loading branch information
mikedory authored and jhuleatt committed Dec 12, 2019
1 parent 8ef21a0 commit 7d63ef3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quickstarts/uppercase-firestore/firestore.rules
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
service cloud.firestore {
match /databases/{database}/documents {
match /messages/{message} {
// Allow authnticated users to read/write the messages collection
// Allow authenticated users to read/write the messages collection
allow read, write: if request.auth != null;
}
}
}
}

0 comments on commit 7d63ef3

Please sign in to comment.