Skip to content

Commit

Permalink
Evaluate medlemskap to true for all values
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-meidell committed Nov 8, 2023
1 parent 197aae2 commit d42b3b7
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ sealed class Medlemskap {
) : Medlemskap()

/**
* Tidligere har man godtatt at verdien av "pensjonstrygdet" i Infotrygd var enten fraværende eller ja.
* Ikke helt avklart hvordan vi skal håndtere dette enda, ser ut som feltet "pensjonstrygdet" aldri har blitt brukt
* som en mekanisme for filtrering. Inntil videre godtar vi alt"
*/
fun erMedlem(): Boolean {
return this is Ja || this is Ukjent
return true
}
}

Expand Down

0 comments on commit d42b3b7

Please sign in to comment.