Skip to content

Commit

Permalink
F - Legger inn at det er lov med null for sakId på ApiRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
dskarpas committed Nov 15, 2023
1 parent 1568476 commit c4adc98
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/kotlin/no/nav/eessi/pensjon/shared/api/ApiRequest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
//Samme som SedRequest i frontend-api
@JsonIgnoreProperties(ignoreUnknown = true)
data class ApiRequest(
val sakId: String,
val sakId: String? = null,
val vedtakId: String? = null,
val kravId: String? = null,
val kravDato: String? = null,
Expand Down Expand Up @@ -111,9 +111,9 @@
throw ResponseStatusException(HttpStatus.BAD_REQUEST,"Mangler fnr for avdød")
}
request.riktigAvdod() ?: return null
val avdodNorskIdent = request.riktigAvdod() ?: throw ResponseStatusException(HttpStatus.BAD_REQUEST,"Mangler Personnr på Avdød")
val avdodAktorId = avdodaktoerID ?: throw ResponseStatusException(HttpStatus.BAD_REQUEST,"Mangler AktoerId på Avdød")
return PersonId(avdodNorskIdent, avdodAktorId)
val avdodNorskIdent1 = request.riktigAvdod() ?: throw ResponseStatusException(HttpStatus.BAD_REQUEST,"Mangler Personnr på Avdød")
val avdodAktorId1 = avdodaktoerID ?: throw ResponseStatusException(HttpStatus.BAD_REQUEST,"Mangler AktoerId på Avdød")
return PersonId(avdodNorskIdent1, avdodAktorId1)
}

}
Expand Down

0 comments on commit c4adc98

Please sign in to comment.