- update TypesEndpoint for all new endpoints - update application to use properties for sql script - update types controller - update types.http for all types of types calls - update test mocking for service - update getTypes to use filter, page, and show in TypesController - add validation dependency - update unit test for uuid assertion from test library in - remove UUIDAssert.kt - update IdentityControllerTest - update MappingKtTest - update NodeControllerTest - update TypeControllerTest - update TypesControllerTest - add test library dependency - update getTypes to handle filter limit and offset in TypeService - update TypeRepository - add findAllContaining with filter, limit and offset - add findAll with limit and offset - update type database with specific name key - split Type and Types
16 lines
296 B
YAML
16 lines
296 B
YAML
jwt:
|
|
private-key: cert/valid-private-key.pem
|
|
|
|
spring:
|
|
r2dbc:
|
|
url: r2dbc:postgresql://placeholder
|
|
username: placeholder
|
|
password: placeholder
|
|
|
|
container:
|
|
postgres:
|
|
version: postgres:17
|
|
init: postgres/schema.sql
|
|
before: postgres/data.sql
|
|
after: postgres/reset.sql
|