muItilingualism
muItilingualism
### Description In `quarkus-hibernate-orm-rest-data-panache` according to the docs you can add additional endpoints to your PanacheEntityResource interface like so: ```java @ResourceProperties public interface PeopleResource extends PanacheEntityResource { @GET @Path("/name/{name}") @Produces("application/json")...
Hi I am working with dates and switched from LocalDateTime to ZonedDateTime and encountered that ZonedDateTimeArbitrary atTheEarliest and atTheLatest only supports LocalDateTime. Having to convert the ZonedDateTime to LocalDateTime leads...