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

[Fix]: 커피챗 자기소개 필드 옵셔널로 변경 #573

Merged
merged 2 commits into from
Jan 3, 2025
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 @@ -21,8 +21,7 @@ public record MemberInfoRequest(
@Schema(required = true)
Career career,

@Schema(required = true)
@NotBlank(message = "자기소개는 필수 입력 값입니다.")
@Schema
@Size(max = 200, message = "자기소개는 200자를 초과할 수 없습니다.")
String introduction
) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class CoffeeChat extends AuditingTimeEntity {
@Enumerated(EnumType.STRING)
private Career career;

@Column(nullable = false, length = 200)
@Column(length = 200)
private String introduction;

@Convert(converter = CoffeeChatSectionConverter.class)
Expand Down
Loading