Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. service cloud.firestore {
  2. match /databases/{database}/documents {
  3. match /users/{userId} {
  4. allow read: if request.auth.uid == userId;
  5. allow write: if false;
  6. }
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement