Skip to content

Commit

Permalink
Merge pull request #150 from PawWithU/feat/149-apply-validation-modify
Browse files Browse the repository at this point in the history
[Feature] 이동봉사 신청 시 내용 제한 설정 변경
  • Loading branch information
kyeong-hyeok authored Nov 23, 2023
2 parents 6282ec4 + b526f7a commit 0f18bc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 0f18bc3

Please sign in to comment.