Update private user rule to check id field

This commit is contained in:
jahooma 2022-01-26 15:03:45 -06:00
parent 348c8d565a
commit 8e51f68430

View File

@ -16,7 +16,7 @@ service cloud.firestore {
}
match /private-users/{userId} {
allow read: if resource.data.creatorId == request.auth.uid || isAdmin();
allow read: if resource.data.id == request.auth.uid || isAdmin();
}
match /contracts/{contractId} {