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