commit 916a3189ce3c4852dbf498b4cf6fa96ba9f9f1de
parent a95f25401493cec943f0562d53f512b04ec5280d
Author: MS <ms@taler.net>
Date: Tue, 26 Jan 2021 18:28:42 +0100
include connection readiness in status
Testing this feature depends on #6715.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/ebics/EbicsNexus.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/ebics/EbicsNexus.kt
@@ -593,6 +593,7 @@ fun getEbicsConnectionDetails(conn: NexusBankConnectionEntity): Any {
val node = mapper.createObjectNode()
node.put("type", conn.type)
node.put("owner", conn.owner.username)
+ node.put("ready", true) // test with #6715 needed.
node.set<JsonNode>("details", details)
return node
}