๐ Allow - Read, Write, & Beyond
What operations can you allow in Firestore?
match /users/{docId=**} {
allow read, write;
allow get;
allow list;
allow create;
allow update;
allow delete;
}
What operations can you allow in Firestore?
match /users/{docId=**} {
allow read, write;
allow get;
allow list;
allow create;
allow update;
allow delete;
}