Skip to content

Commit

Permalink
rfac: removed compulsory description in requests (backend)
Browse files Browse the repository at this point in the history
  • Loading branch information
yp969803 committed May 19, 2024
1 parent 2b03838 commit 96d6f6f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public class AddOrgRequest implements Serializable {
@Size(min=3,max=15)
private String name;

@NotBlank
@Size(min=5, max=30)
private String description;
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class AddProjectRequest implements Serializable{
@Size(min=3,max=10)
private String name;

@NotBlank

@Size(min=5,max=30)
private String description;

Expand Down

0 comments on commit 96d6f6f

Please sign in to comment.