Skip to content

Commit

Permalink
corrected PolicyGroupUpdateRequestDto (#1002)
Browse files Browse the repository at this point in the history
Signed-off-by: sudeep <[email protected]>
  • Loading branch information
Sudeep7353 authored Nov 27, 2024
1 parent 7c01923 commit bbbecfa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class PolicyGroupUpdateRequestDto {
private String name;

@NotBlank(message="value is empty or null")
@Size(min = 1, max = 128, message = "Length should be between 1 and 128 chars")
@Size(min = 1, max = 256, message = "Length should be between 1 and 256 chars")
private String desc;

private Boolean isActive;
Expand Down

0 comments on commit bbbecfa

Please sign in to comment.