|
|
@ -18,7 +18,7 @@ namespace CoviDok.Data.MySQL |
|
|
|
{ |
|
|
|
Child child = await handler.GetChild(id); |
|
|
|
if (child == null) throw new KeyNotFoundException(); |
|
|
|
if (child.DoctorId == s.Id || child.ParentId == s.Id) |
|
|
|
if (handler.IsAuthorized(s, child)) |
|
|
|
{ |
|
|
|
return child.ToPublic(); |
|
|
|
} |
|
|
@ -43,7 +43,7 @@ namespace CoviDok.Data.MySQL |
|
|
|
|
|
|
|
Child child = await handler.GetChild(id); |
|
|
|
if (child == null) throw new KeyNotFoundException(); |
|
|
|
if (child.ParentId == s.Id || child.DoctorId == s.Id) |
|
|
|
if (handler.IsAuthorized(s, child)) |
|
|
|
{ |
|
|
|
child.UpdateSelf(newData); |
|
|
|
await handler.UpdateChild(id, child); |
|
|
|