We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34a8fb0 commit 7c14f96Copy full SHA for 7c14f96
container/src/main/java/io/vanillabp/cockpit/gui/api/v1/LoginApiController.java
@@ -215,8 +215,8 @@ public Mono<ResponseEntity<AppInformation>> appInformation(
215
.titleLong(properties.getTitleLong())
216
.titleShort(properties.getTitleShort())
217
.version(properties.getApplicationVersion())
218
- .buildTimestamp(properties.getBuildTimestamp())));
219
-
+ .buildTimestamp(properties.getBuildTimestamp())
+ .additionalProperties(properties.getAdditionalProperties())));
220
}
221
222
@Override
container/src/main/resources/api/gui/v1.yaml
@@ -66,6 +66,8 @@ components:
66
type: string
67
buildTimestamp:
68
69
+ additionalProperties:
70
+ type: object
71
Page:
72
type: object
73
required:
0 commit comments