Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE] refactor(#613): Size 수정 #615

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@Builder
public class AddCommitCommentRequest {
@NotBlank(message = "댓글 내용은 공백일 수 없습니다.")
@Size(max = 60, message = "댓글 내용은 60자를 넘을 수 없습니다.")
@Size(max = 100, message = "댓글 내용은 100자를 넘을 수 없습니다.")
private String content;

private Long studyInfoId; // 프론트에서 처리할 스터디Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
@Builder
public class MessageRequest {

@Size(max = 40, message = "메세지 40자 이내")
@Size(max = 100, message = "메세지 100자 이내")
private String message; // 팀장에게 한마디 or 멤버에게 보낼 메세지 or 탈퇴 메세지
}
Loading