Guest User

Untitled

a guest
Dec 27th, 2018
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. {
  2. "rules": {
  3. ".read": "(auth.token.email == 'mybuddy@gmail.com' || auth.token.email == 'anotherfriend@gmail.com')",
  4. ".write": "(auth.token.email == 'mybuddy@gmail.com' || auth.token.email == 'anotherfriend@gmail.com')"
  5. }
  6. }
  7.  
  8. service cloud.firestore {
  9. match /databases/{database}/documents {
  10. match /{document=**} {
  11. allow read, write: if isWhiteListedUser();
  12. }
  13. }
  14.  
  15. function isWhiteListedUser () {
  16. return request.auth.token.email == 'mybuddy@gmail.com'
  17. || request.auth.token.email == 'anotherfriend@gmail.com';
  18. }
  19. }
Add Comment
Please, Sign In to add comment