We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4ca5d2 commit 423c11bCopy full SHA for 423c11b
src/main/kotlin/no/nav/hjelpemidler/oebs/listener/api/ServiceforespørselAPI.kt
@@ -18,6 +18,8 @@ fun Route.serviceforespørselAPI(context: Context) {
18
post("/sf") {
19
log.info { "Innkommende SF-oppdatering" }
20
try {
21
+ val endringRaw = call.receive<Map<String, String>>()
22
+ log.info { "Rå serviceforespørsel $endringRaw" }
23
val endring = call.receive<ServiceforespørselEndring>()
24
val message = ServiceforespørselEndringMessage(endring)
25
publiserMelding(context, endring, message)
0 commit comments