libeufin

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

commit c1980ed1dc57702aad1b6fea92eadfa187420f41
parent dcb5093fc78ccdc61a328ea62c6c9d452d5a748e
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Wed,  1 Apr 2020 17:04:17 +0200

Remove duplicated code.

Diffstat:
Mnexus/src/main/kotlin/tech/libeufin/nexus/Main.kt | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt @@ -600,12 +600,10 @@ fun main() { } return@post } - post("/ebics/subscribers/{id}/collect-transactions-c52") { // FIXME(florian): Download C52 and store the result in the right database table } - get("/ebics/subscribers/{id}/show-collected-transactions-c53") { val id = expectId(call.parameters["id"]) var ret = "" @@ -755,10 +753,6 @@ fun main() { post("/ebics/subscribers/{id}/collect-transactions-c54") { // FIXME(florian): Download C54 and store the result in the right database table } - - get("/ebics/subscribers/{id}/transactions") { - // FIXME(florian): Display local transaction history stored by the nexus. - } post("/ebics/subscribers/{id}/sendC52") { val id = expectId(call.parameters["id"]) val paramsJson = call.receive<EbicsStandardOrderParamsJson>()