Skip to content

Commit

Permalink
PI-2578 Fix schema validation on determinateSentence
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-bcl committed Oct 10, 2024
1 parent 9a810c9 commit dfc8913
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ data class DisposalType(
@Column
val requiredInformation: String,
) {
val determinateSentence: Boolean = requiredInformation == "L1"
val determinateSentence: Boolean get() = requiredInformation == "L1"
}

@Immutable
Expand Down

0 comments on commit dfc8913

Please sign in to comment.