Hi I am trying to run a function that reads and updates my firestore. However I am running into security permission issues. My current rules are:
`rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /users/{user} {
allow read, write, create, delete, update: if request.auth != null;
}
}
}`
Should they be updated to something different? If so what should they be changed to?