public void Post([FromBody] post post)
 {
     PostRepository.AddNewPost(post.text, post.author);
 }