Skip to content

Commit 7c14f96

Browse files
add additionalProperties to gui api
1 parent 34a8fb0 commit 7c14f96

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

container/src/main/java/io/vanillabp/cockpit/gui/api/v1/LoginApiController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ public Mono<ResponseEntity<AppInformation>> appInformation(
215215
.titleLong(properties.getTitleLong())
216216
.titleShort(properties.getTitleShort())
217217
.version(properties.getApplicationVersion())
218-
.buildTimestamp(properties.getBuildTimestamp())));
219-
218+
.buildTimestamp(properties.getBuildTimestamp())
219+
.additionalProperties(properties.getAdditionalProperties())));
220220
}
221221

222222
@Override

container/src/main/resources/api/gui/v1.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ components:
6666
type: string
6767
buildTimestamp:
6868
type: string
69+
additionalProperties:
70+
type: object
6971
Page:
7072
type: object
7173
required:

0 commit comments

Comments
 (0)