public IActionResult AddPost([FromBody] Post post)
 {
     redditService.AddPost(post);
     return(Json(post));
 }