|
|
@ -100,6 +100,25 @@ namespace CoviDok.Controllers |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[HttpPost("updates/{id}")] |
|
|
|
public async Task<ActionResult<Update>> GetUpdate(int id, AuthGet get) |
|
|
|
{ |
|
|
|
Session s = await Handler.GetSession(get.SessionID); |
|
|
|
if (s == null) return Unauthorized(); |
|
|
|
try |
|
|
|
{ |
|
|
|
return await mgr.GetUpdate(s, id); |
|
|
|
} |
|
|
|
catch (UnauthorizedAccessException) |
|
|
|
{ |
|
|
|
return Unauthorized(); |
|
|
|
} |
|
|
|
catch (KeyNotFoundException) |
|
|
|
{ |
|
|
|
return NotFound(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// POST /api/Case/{id}/close
|
|
|
|
[HttpPost("{id}/close")] |
|
|
|
public async Task<IActionResult> PostClose(int id, CaseUpdate data) |
|
|
|