@GET
@Path("{timestamp}")
@Produces(MediaType.APPLICATION_JSON)
public PostRepresentation getPost(@PathParam("username") String username, @PathParam("timestamp") String timestamp) {
Post post = userRepository.getUser(username).getPost(new Timestamp(timestamp));
return new PostRepresentation(post, false);
}