Guest User

Untitled

a guest
Dec 18th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. service cloud.firestore {
  2. match /databases/{database}/documents {
  3. match /resources/{document=**} {
  4. allow read;
  5. }
  6. match /locations/{document=**} {
  7. allow read;
  8. }
  9. match /resources/{id}/likes/{document=**} {
  10. allow read, write;
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment