mycar98765

Google Cloud Firestore security rules

Oct 22nd, 2022
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | Source Code | 0 0
  1. rules_version = '2';
  2. service cloud.firestore {
  3. match /databases/{database}/documents {
  4. match /{document=**} {
  5. allow read, write: if false;
  6. }
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment