philverify-api / firestore.rules
Ryan Christian D. Deniega
feat: Firebase integration — Firestore persistence, firebase.json hosting + Cloud Run rewrite
954286a
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /verifications/{docId} {
allow read: if true;
allow write: if false;
}
}
}