|
|
@ -66,6 +66,14 @@ namespace CoviDok.Controllers |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[HttpPost("parent")] |
|
|
|
public async Task<ActionResult<List<PublicChild>>> GetChildrenOfParent(AuthGet auth) |
|
|
|
{ |
|
|
|
Session s = await Handler.GetSession(auth.SessionID); |
|
|
|
if (s == null) return Unauthorized(); |
|
|
|
return ChildManager.ChildrenOfParent(s.ID); |
|
|
|
} |
|
|
|
|
|
|
|
// POST: api/Child
|
|
|
|
// To protect from overposting attacks, enable the specific properties you want to bind to, for
|
|
|
|
// more details, see https://go.microsoft.com/fwlink/?linkid=2123754.
|
|
|
|