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