Spaces:
Running
Running
File size: 191 Bytes
954286a | 1 2 3 4 5 6 7 8 9 | rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /verifications/{docId} {
allow read: if true;
allow write: if false;
}
}
} |