libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit 297db5d984e36b3c44a72b9a8d627fe0b38e3c27
parent 9b93584989eacd6be3d533c4aa40d4a650eefd71
Author: MS <ms@taler.net>
Date:   Tue, 17 Aug 2021 03:05:44 -1100

make code match docs

Diffstat:
Mnexus/src/main/kotlin/tech/libeufin/nexus/server/JSON.kt | 2+-
Mnexus/src/main/kotlin/tech/libeufin/nexus/server/NexusServer.kt | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/server/JSON.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/server/JSON.kt @@ -356,7 +356,7 @@ data class FacadeShowInfo( val type: String, // Taler wire gateway API base URL. // Different from the base URL of the facade. - val twgBaseUrl: String, + val baseUrl: String, val config: JsonNode ) diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/server/NexusServer.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/server/NexusServer.kt @@ -900,7 +900,7 @@ fun serverMain(host: String, port: Int) { FacadeShowInfo( name = f.facadeName, type = f.type, - twgBaseUrl = call.url { + baseUrl = call.url { parameters.clear() encodedPath = "" pathComponents("facades", f.facadeName, f.type) @@ -927,7 +927,7 @@ fun serverMain(host: String, port: Int) { FacadeShowInfo( name = it.facadeName, type = it.type, - twgBaseUrl = call.url { + baseUrl = call.url { parameters.clear() encodedPath = "" pathComponents("facades", it.facadeName, it.type)