Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
wellbeing-dough committed Oct 18, 2023
2 parents d6c1fe1 + 5587dc5 commit 66e26ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class CreateCommentRequest {

@Schema(description = "댓글 내용", example = "좋습니다!")
@NotBlank
@Size(max = 600)
@Size(max = 600, message = "댓글은 최대 600자까지 입력 가능합니다.")
private String content;

@Builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ public class CreateNormalVoteRequest {

@Schema(description = "투표 제목", example = "A, B 중 어떤게 나을까요?")
@NotBlank(message = "투표 제목은 필수입니다.")
@Size(max = 75)
@Size(max = 75, message = "제목은 최대 75자까지 입력 가능합니다.")
private String title;

@Schema(description = "투표 상세", example = "A는 ~때문에 고민이고 B는 ~때문에 고민입니다")
@Size(max = 600)
@Size(max = 600, message = "내용은 최대 600자까지 입력할 가능합니다.")
private String detail;

@Schema(description = "A 항목의 제목")
@NotBlank(message = "투표 A항목의 제목은 필수입니다.")
@Size(max = 55)
@Size(max = 55, message = "제목은 최대 55자까지 입력 가능합니다.")
private String titleA;

@Schema(description = "B 항목의 제목")
@NotBlank(message = "투표 B항목의 제목은 필수입니다.")
@Size(max = 55)
@Size(max = 55, message = "제목은 최대 55자까지 입력 가능합니다.")
private String titleB;

@Schema(description = "A 이미지", example = "https://shopping-phinf.pstatic.net/main_8259853/82598534476.2.jpg")
Expand Down

0 comments on commit 66e26ca

Please sign in to comment.