Skip to content

Commit

Permalink
update generated models
Browse files Browse the repository at this point in the history
  • Loading branch information
grabsefx committed Jul 19, 2024
1 parent f1d7612 commit 146bdd0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public ProjectDetails name(String name) {
@Schema(required = true, description = "Display project name.")
@NotNull

@Size(min=3,max=256) public String getName() {
@Size(min=3,max=250) public String getName() {
return name;
}

Expand All @@ -53,7 +53,7 @@ public ProjectDetails slug(String slug) {
**/
@Schema(description = "")

@Pattern(regexp="^[a-z0-9]+(?:-[a-z0-9]+)*$") @Size(min=3,max=256) public String getSlug() {
@Pattern(regexp="^[a-z0-9]+(?:-[a-z0-9]+)*$") @Size(min=3,max=250) public String getSlug() {
return slug;
}

Expand Down

0 comments on commit 146bdd0

Please sign in to comment.