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

[Feature] 이동봉사 신청 시 내용 제한 설정 변경 #150

Merged
merged 1 commit into from
Nov 23, 2023
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 @@ -32,7 +32,7 @@ public class ApplicationController {
responses = {@ApiResponse(responseCode = "204", description = "이동봉사자 소셜 로그인 추가 회원가입 성공")
, @ApiResponse(responseCode = "400"
, description = "V1, 이름은 필수 입력 값입니다. \t\n V1, 휴대전화 번호는 필수 입력 값입니다. \t\n V1, 유효하지 않은 휴대전화 번호입니다. \t\n " +
"V1, 교통수단은 필수 입력 값입니다. \t\n V1, 10~200자로 입력해 주세요. \t\n M1, 해당 이동봉사자를 찾을 수 없습니다. \t\n " +
"V1, 교통수단은 필수 입력 값입니다. \t\n V1, 200자 이내로 입력해 주세요. \t\n M1, 해당 이동봉사자를 찾을 수 없습니다. \t\n " +
"P2, 해당 공고를 찾을 수 없습니다. \t\n AP1, 이미 신청된 공고입니다."
, content = @Content(schema = @Schema(implementation = ErrorResponse.class)))
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public record VolunteerApplyRequest(@NotBlank(message = "이름은 필수 입력
String phone,
@NotBlank(message = "교통수단은 필수 입력 값입니다.")
String transportation,
@Size(min=10, max=200, message = "10~200자로 입력해 주세요.")
@Size(max=200, message = "200자 이내로 입력해 주세요.")
String content) {

public Application toEntity(Post post, Intermediary intermediary, Volunteer volunteer) {
Expand Down
Loading