Skip to content

Commit

Permalink
fix rules
Browse files Browse the repository at this point in the history
  • Loading branch information
hgwood committed Jul 30, 2018
1 parent b2e61da commit f40abb2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion firestore.rules
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ service cloud.firestore {
return request.auth.uid != null;
}

allow read: if authenticated();
match /{document=**} {
allow read: if authenticated();
}

}
}

0 comments on commit f40abb2

Please sign in to comment.