Skip to content

Commit

Permalink
Skiller ut eksern endepunkt i eget spec
Browse files Browse the repository at this point in the history
* eksterne endepunkter er skilt ut i egen spec. Gjøres for at eksterne brukere skal kunne ta i bruk relevante løsninger uten internt støy.

- TB-132
  • Loading branch information
espgus committed Jan 13, 2025
1 parent 1ca47c5 commit 66bac89
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import io.ktor.server.routing.*
import io.ktor.server.util.*
import no.kartverket.matrikkel.bygning.application.bygning.BygningService
import no.kartverket.matrikkel.bygning.routes.v1.common.domainErrorToResponse
import no.kartverket.matrikkel.bygning.routes.v1.intern.bygning.BygningResponse

fun Route.bygningEksternRouting(
bygningService: BygningService
Expand All @@ -25,7 +24,7 @@ fun Route.bygningEksternRouting(
}
response {
code(HttpStatusCode.OK) {
body<BygningResponse> {
body<BygningEksternResponse> {
description = "Bygningen med tilhørende bruksenheter"
}
description = "Bygningen finnes og ble hentet"
Expand Down

0 comments on commit 66bac89

Please sign in to comment.