AllenYuan

firebase rules

May 1st, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. rules_version = '2';
  2. service cloud.firestore {
  3. match /databases/{database}/documents {
  4. match /{document=**} {
  5. allow read: if true;
  6. allow write: if false;
  7. }
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment