I've changed my security rules in cloud firestore and I am not sure, if this is a good option:
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if request.auth.uid != null;
}
}
}
Do you see any problems I might face if I leave it like this?