summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>()