Skip to content

Commit 0f6e3ad

Browse files
authored
Merge pull request #2691 from digma-ai/backend-info-features
backend info features
2 parents 8422585 + a4ed426 commit 0f6e3ad

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

model/src/main/kotlin/org/digma/intellij/plugin/model/rest/AboutResult.kt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,17 @@ const val UNKNOWN_APPLICATION_VERSION = "unknown"
1010

1111
@JsonIgnoreProperties(ignoreUnknown = true)
1212
data class AboutResult @JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
13-
@ConstructorProperties("applicationVersion", "deploymentType", "isCentralize","site")
13+
@ConstructorProperties("applicationVersion", "deploymentType", "isCentralize", "site", "features")
1414
constructor(
1515
val applicationVersion: String,
1616
val deploymentType: BackendDeploymentType? = BackendDeploymentType.Unknown,
1717
val isCentralize: Boolean?,
18-
val site: String?
19-
){
18+
val site: String?,
19+
val features: Map<String, String>? = null
20+
) {
2021

21-
companion object{
22+
companion object {
2223
@JvmStatic
23-
val UNKNOWN = AboutResult(UNKNOWN_APPLICATION_VERSION, BackendDeploymentType.Unknown, false, null)
24+
val UNKNOWN = AboutResult(UNKNOWN_APPLICATION_VERSION, BackendDeploymentType.Unknown, false, null,null)
2425
}
2526
}

ui-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11.0.0
1+
11.3.0

0 commit comments

Comments
 (0)