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

refactor: 복덕방 internalName 필수요구 제거 #650

Merged
merged 1 commit into from
Jul 1, 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 @@ -22,8 +22,7 @@ public record AdminLandRequest(
@Size(max = 255, message = "방이름의 최대 길이는 255자입니다.")
String name,

@Schema(description = "이름 - not null - 최대 50자", example = "금실타운", requiredMode = REQUIRED)
@NotNull(message = "방이름은 필수입니다.")
@Schema(description = "이름 - not null - 최대 50자", example = "금실타운")
@Size(max = 50, message = "방이름의 최대 길이는 50자입니다.")
String internalName,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public record AdminLandResponse(
@Schema(description = "이름", example = "금실타운", requiredMode = Schema.RequiredMode.REQUIRED)
String name,

@Schema(description = "내부 이름", example = "금실타운", requiredMode = Schema.RequiredMode.REQUIRED)
@Schema(description = "내부 이름", example = "금실타운")
String internalName,

@Schema(description = "크기", example = "9.0")
Expand Down
Loading