79759753

Date: 2025-09-09 10:17:04
Score: 0.5
Natty:
Report link
rules_version = '2';

service cloud.firestore {
  match /databases/{database}/documents {
    match /leads/{document=**} {
      allow write : if true;
      allow read: if request.auth.uid != null;
    }
    match /users/{document=**} {
      allow read, write : if request.auth.uid != null;
    }
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: akando42