public IActionResult PostNewPost(int profileID, [FromBody] Post post)
 {
     _postsRepository.AddNewPostToProfile(profileID, post);
     return(Created($"{Request.Path}/{post.ID}", post));
 }