summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2020-04-01 17:04:17 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2020-04-01 17:04:17 +0200
commitc1980ed1dc57702aad1b6fea92eadfa187420f41 (patch)
tree0709d33fda56f2c9ac91fe560d9c6c31e5f47d1d
parentdcb5093fc78ccdc61a328ea62c6c9d452d5a748e (diff)
downloadlibeufin-c1980ed1dc57702aad1b6fea92eadfa187420f41.tar.gz
libeufin-c1980ed1dc57702aad1b6fea92eadfa187420f41.tar.bz2
libeufin-c1980ed1dc57702aad1b6fea92eadfa187420f41.zip
Remove duplicated code.
-rw-r--r--nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt6
1 files 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
index 15d20eec..be134337 100644
--- 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>()