Я хочу разрешить создателю семьи добавлять детей. Я сохраняю uid как «владелец» семейства
match /families/{family} {
allow create: if request.auth != null
allow update: if request.auth != null && request.auth.uid == request.resource.data.uid;
}
match /families/{family}/children/{child} {
allow read
allow create: if request.auth.uid != null //this will allow any parent to create children on any famly!!;
}
. Как я могу разрешить создание if {family} .uid == request.auth.uid ??