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

#565 [feat] 글모임 정보 수정 API validation 수정 #566

Merged
merged 1 commit into from
Nov 2, 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 @@ -11,7 +11,6 @@
import lombok.Getter;
import lombok.NoArgsConstructor;

import java.util.List;
import java.util.Set;

@Entity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public record MoimInfoModifyRequest(
@NotBlank(message = "모임 제목이 비어져 있습니다.")
@Size(max = 10, message = " 글모임 이름은 최대 10 글자 이내로 작성해주세요.")
String moimTitle,
@NotBlank

@Size(max = 100, message = "글모임 설명은 최대 100 글자 이내로 작성해주세요.")
String description,

Expand Down
Loading