CopyPastor

Detecting plagiarism made easy.

Score: 0.8040833473205566; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2023-01-02
by My Car

Original Post

Original - Posted on 2021-02-17
by Priyesh



            
Present in both answers; Present only in the new answer; Present only in the old answer;

Try changing your security rules to the following:
rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read, write: if true; } } }
You can make your rule as per below. It is also secure
rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read, write: if request.auth != null; } } }

        
Present in both answers; Present only in the new answer; Present only in the old answer;