public IActionResult HideComment(int commentId)
 {
     _ideationManager.HideComment(commentId);
     _unitOfWorkManager.Save();
     return(Ok());
 }