commit cef920187af269020e1d214c45bcf8b969128f7c
parent c78fd0923352c51aa9c7802e18abc198b4ad06b9
Author: Florian Dold <florian@dold.me>
Date: Sun, 17 Jan 2021 00:43:05 +0100
delete copy paste artifact
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/server/NexusServer.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/server/NexusServer.kt
@@ -559,13 +559,11 @@ fun serverMain(dbName: String, host: String, port: Int) {
}
post("/bank-accounts/{accountid}/submit-all-payment-initiations") {
- val uuid = ensureLong(call.parameters["uuid"])
val accountId = ensureNonNull(call.parameters["accountid"])
val res = transaction {
authenticateRequest(call.request)
}
submitAllPaymentInitiations(client, accountId)
- call.respondText("Payment ${uuid} submitted")
return@post
}