Skip to content

Commit

Permalink
MAN-190: Added lao checks for caseload search
Browse files Browse the repository at this point in the history
  • Loading branch information
pmcphee77 committed Dec 3, 2024
1 parent c759638 commit 7b51e44
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ import java.time.LocalDateTime
object LimitedAccessGenerator {
val EXCLUSION = generateExclusion(PersonDetailsGenerator.EXCLUSION)
val RESTRICTION =
generateRestriction(PersonDetailsGenerator.RESTRICTION, endDateTime = LocalDateTime.now().plusHours(1))
generateRestriction(PersonDetailsGenerator.RESTRICTION, endDateTime = LocalDateTime.now().plusDays(1))
val BOTH_EXCLUSION = generateExclusion(PersonDetailsGenerator.RESTRICTION_EXCLUSION)
val BOTH_RESTRICTION = generateRestriction(
PersonDetailsGenerator.RESTRICTION_EXCLUSION,
endDateTime = LocalDateTime.now().plusHours(1)
endDateTime = LocalDateTime.now().plusDays(1)
)

fun generateExclusion(
Expand Down

0 comments on commit 7b51e44

Please sign in to comment.