blob: e33c36a6dff307e7dcb20eb005399025060ab5f9 [file] [log] [blame]
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;
}
}
}