@@ -4,7 +4,6 @@ import io.swagger.v3.oas.annotations.Operation
4
4
import no.nav.familie.kontrakter.felles.Fagsystem
5
5
import no.nav.familie.kontrakter.felles.Ressurs
6
6
import no.nav.familie.kontrakter.felles.tilbakekreving.Ytelsestype
7
- import no.nav.familie.tilbake.behandling.domain.Iverksettingsstatus
8
7
import no.nav.familie.tilbake.forvaltning.ForvaltningService
9
8
import no.nav.familie.tilbake.oppgave.OppgaveTaskService
10
9
import no.nav.familie.tilbake.sikkerhet.AuditLoggerEvent
@@ -165,14 +164,12 @@ class ForvaltningController(
165
164
return Ressurs .success(forvaltningService.hentForvaltningsinfo(ytelsestype, eksternFagsakId))
166
165
}
167
166
168
-
169
167
@Operation(summary = " Hent locale og klokkeslett" )
170
168
@GetMapping(
171
169
path = [" /hentlocale" ],
172
170
produces = [MediaType .APPLICATION_JSON_VALUE ],
173
171
)
174
- fun hentlocale (
175
- ): Ressurs <String > {
172
+ fun hentlocale (): Ressurs <String > {
176
173
return Ressurs .success(LocaleContextHolder .getLocale().toString() + " " + ZonedDateTime .now())
177
174
}
178
175
@@ -193,7 +190,8 @@ class ForvaltningController(
193
190
produces = [MediaType .APPLICATION_JSON_VALUE ],
194
191
)
195
192
fun settIverksettStegTilUtf ørtOgFortsett (
196
- @PathVariable taskId : Long , @PathVariable behandlingId : UUID ,
193
+ @PathVariable taskId : Long ,
194
+ @PathVariable behandlingId : UUID ,
197
195
) {
198
196
forvaltningService.hoppOverIverksettingMotOppdrag(behandlingId = behandlingId, taskId = taskId)
199
197
}
0 commit comments