| rules_version = '2'; | |
| service cloud.firestore { | |
| match /databases/{database}/documents { | |
| match /github-label-subscriptions/{userId} { | |
| allow read, update, delete: if request.auth.uid == userId; | |
| allow create: if request.auth.uid != null; | |
| } | |
| match /{document=**} { | |
| allow read, write: if false; | |
| } | |
| } | |
| } |