CopyPastor

Detecting plagiarism made easy.

Score: 1; Reported for: Exact paragraph match Open both answers

Possible Plagiarism

Plagiarized on 2023-09-29
by dHarshMakwana

Original Post

Original - Posted on 2019-01-30
by Md Nakibul Hassan



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

This is because probably
service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read, write: if request.time < timestamp.date(2023, 12, 17); } } }
Try this as temporary solution you may need to update it when added to production
Hopefully it works for you
Go to **Database** -> **Rules** :
**Then changed below rules**
service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read, write: if false; } } }
**to below**
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;