Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
Increase allowed length for standardised names (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
bergmann-dierk authored Mar 25, 2022
1 parent 8fb482c commit 49ec67d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ public class QuickTestPersonalDataRequest {
private LocalDate birthday;

@ValidCommonChar
@Size(min = 1, max = 50)
@Size(min = 1, max = 150)
private String standardisedFamilyName;

@ValidCommonChar
@Size(min = 1, max = 50)
@Size(min = 1, max = 150)
private String standardisedGivenName;

@NotNull
Expand Down

0 comments on commit 49ec67d

Please sign in to comment.