public IActionResult Upvote(int id)
 {
     redditService.UpVote(id);
     return(Json(redditService.GetPostById(id)));
 }