Skip to content

Commit

Permalink
chore: remove unused auth and email
Browse files Browse the repository at this point in the history
  • Loading branch information
nuranes authored and jaflaten committed Dec 3, 2024
1 parent 1819dbf commit 0b4d932
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ class NasjonalOppgaveService(
fun avvisOppgave(
oppgaveId: Int,
request: String,
authorization: String,
navEnhet: String,
): ResponseEntity<NasjonalManuellOppgaveDAO> {
val eksisterendeOppgave = nasjonalOppgaveRepository.findByOppgaveId(oppgaveId)
Expand All @@ -104,7 +103,7 @@ class NasjonalOppgaveService(
if (eksisterendeOppgave != null) {
val veilederIdent = oppgaveSecurityService.getNavIdent().veilederIdent

ferdigstillNasjonalAvvistOppgave(oppgaveId, authorization, navEnhet, avvisningsgrunn, veilederIdent)
ferdigstillNasjonalAvvistOppgave(oppgaveId, navEnhet, avvisningsgrunn, veilederIdent)
val res = oppdaterOppgave(
eksisterendeOppgave.sykmeldingId,
utfall = Utfall.AVVIST.toString(),
Expand Down Expand Up @@ -222,7 +221,6 @@ fun mapToDao(
@Transactional
fun ferdigstillNasjonalAvvistOppgave(
oppgaveId: Int,
authorization: String, // skal dette eigentleg brukes til noke?
navEnhet: String,
avvisningsgrunn: String?,
veilederIdent: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ import org.springframework.web.bind.annotation.RequestHeader
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.ResponseBody
import org.springframework.web.bind.annotation.RestController
import org.springframework.web.reactive.function.client.WebClientResponseException.BadRequest
import java.util.UUID
import javax.net.ssl.SSLEngineResult

@RestController
@RequestMapping("/api/v1/proxy")
Expand All @@ -43,12 +41,11 @@ class NasjonalOppgaveController(
@PreAuthorize("@oppgaveSecurityService.hasAccessToNasjonalOppgave(#oppgaveId)")
fun avvisOppgave(
@PathVariable oppgaveId: String,
@RequestHeader("Authorization") authorization: String,
@RequestHeader("X-Nav-Enhet") navEnhet: String,
@RequestBody avvisSykmeldingRequest: String,
): ResponseEntity<NasjonalManuellOppgaveDAO> {
log.info("Forsøker å avvise oppgave med oppgaveId: $oppgaveId")
return nasjonalOppgaveService.avvisOppgave(oppgaveId.toInt(), avvisSykmeldingRequest, authorization, navEnhet)
return nasjonalOppgaveService.avvisOppgave(oppgaveId.toInt(), avvisSykmeldingRequest, navEnhet)
}

@GetMapping("/oppgave/{oppgaveId}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,10 @@ class NasjonalOppgaveServiceTest : IntegrationTest() {
Mockito.doNothing().`when`(documentService).updateDocumentTitle(org.mockito.kotlin.any(), org.mockito.kotlin.any(), org.mockito.kotlin.any())

assertTrue(originalOppgave.avvisningsgrunn == null)
val avvistOppgave = nasjonalOppgaveService.avvisOppgave(oppgaveId, request, "auth streng", "enhet")
val avvistOppgave = nasjonalOppgaveService.avvisOppgave(oppgaveId, request, "enhet")
assertEquals(testDataNasjonalManuellOppgaveDAO(null, "456", oppgaveId).oppgaveId, avvistOppgave.body?.oppgaveId ?: 123)
assertTrue(avvistOppgave.body?.avvisningsgrunn == "MANGLENDE_DIAGNOSE")
assertEquals(avvistOppgave.body?.id, originalOppgave.id)

}


Expand Down

0 comments on commit 0b4d932

Please sign in to comment.