public IActionResult Accept(int id)
 {
     _commentService.AcceptPendingComment(id);
     return(RedirectToAction("Details", "User"));
 }