Skip to content

Commit

Permalink
chore(Lightning): 최소 글자수 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Dec 22, 2024
1 parent 3152314 commit f6bbe75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class Lightning extends BaseTimeEntity {
private Integer leaderUserId;

@NotNull
@Size(min = 0, max = 30)
@Size(min = 1, max = 30)
private String title;

@Column(name = "imageURL", columnDefinition = "jsonb")
Expand Down

0 comments on commit f6bbe75

Please sign in to comment.