libeufin

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

commit 6c833ee015943eca1b863e9eaa657f18f012f52c
parent 70a8767eff4c53ca5899025f797b45b0041297fa
Author: MS <ms@taler.net>
Date:   Mon, 31 Aug 2020 14:29:28 +0200

fixme

Diffstat:
Mintegration-tests/all.sh | 1+
Mnexus/src/main/kotlin/tech/libeufin/nexus/Taler.kt | 3++-
Msandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt | 10++++++++++
3 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/integration-tests/all.sh b/integration-tests/all.sh @@ -6,3 +6,4 @@ ./test-sandbox.py ./test-taler-facade.py ./test-bankConnection.py +./test-ebics-double-payment-submission.py diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/Taler.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/Taler.kt @@ -559,4 +559,4 @@ fun talerFacadeRoutes(route: Route, httpClient: HttpClient) { call.respondText("Hello, this is Taler Facade") return@get } -} +} +\ No newline at end of file diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt @@ -386,6 +386,9 @@ fun serverMain(dbName: String) { /** * Shows all bank account statements. */ + /* + FIXME: Heng Yeow. + get("/admin/statements") { var ret = BankAccountStatement() ret.creationTime = Instant.now().toEpochMilli() @@ -423,9 +426,14 @@ fun serverMain(dbName: String) { call.respond(ret) return@get } + + */ /** * Shows all bank account reports. */ + /* + FIXME: Heng Yeow. + get("/admin/reports") { val body = call.receive<DateRange>() var ret = BankAccountReport() @@ -433,6 +441,8 @@ fun serverMain(dbName: String) { call.respond(ret) return@get } + + */ } } LOGGER.info("Up and running")