I am getting a warning email from Firebase Firestore every day saying that:
"any user can read your entire database"
But in my case it's an open database where everyone can read the data. I have set up my security rules like so:
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read: if true;
allow write: if request.auth.uid == 'xxxxx';
}
}
}
What is the problem and how do I stop this warning email?