Skip to content

Commit

Permalink
🔊 Logg at det ikke foreligger reservasjon ved ny oppgave
Browse files Browse the repository at this point in the history
  • Loading branch information
havstein committed Jun 18, 2024
1 parent 416897c commit 4f7845b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,11 @@ internal class OppgaveService(
dselsnummer: String,
oppgave: Oppgave,
) {
val (saksbehandlerFraDatabase) = reservasjonDao.hentReservasjonFor(fødselsnummer) ?: return
val (saksbehandlerFraDatabase) =
reservasjonDao.hentReservasjonFor(fødselsnummer) ?: run {
logg.info("Finner ingen reservasjon for $oppgave, blir ikke tildelt.")
return
}
val saksbehandler =
Saksbehandler(
epostadresse = saksbehandlerFraDatabase.epostadresse,
Expand Down

0 comments on commit 4f7845b

Please sign in to comment.