public async Task <IActionResult> SaveNewCheckpointInTask(int commentId, Comment comment)
 {
     return(Ok(await commentService.AddNewReplyToComment(commentId, comment)));
 }