public async Task <ActionResult <Grunt> > EditGrunt([FromBody] Grunt grunt)
 {
     try
     {
         return(await _service.EditGrunt(grunt, await _service.GetCurrentUser(HttpContext.User)));
     }
     catch (ControllerNotFoundException e)
     {
         return(NotFound(e.Message));
     }
     catch (ControllerBadRequestException e)
     {
         return(BadRequest(e.Message));
     }
 }