Skip to content

Commit 142b893

Browse files
committed
validation 메시지 수정
1 parent c592140 commit 142b893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

back/src/main/java/com/back/domain/post/post/dto/PostCreateRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public record PostCreateRequest(
88
String postType,
99
@NotBlank(message = "제목은 null 혹은 공백일 수 없습니다.")
1010
String title,
11-
@NotBlank(message = "제목은 null 혹은 공백일 수 없습니다.")
11+
@NotBlank(message = "내용은 null 혹은 공백일 수 없습니다.")
1212
String content
1313
) {
1414

0 commit comments

Comments
 (0)