Skip to content

Commit

Permalink
♻️ 필드값 길이 제한 수정
Browse files Browse the repository at this point in the history
authorization code max:300
  • Loading branch information
min-0 committed Sep 5, 2024
1 parent 4d49fee commit 0cc829b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/
public record AppleWithdrawRequest(
@NotBlank(message = "인증 코드가 존재하지 않습니다.")
@Size(max = 12, message = "인증 코드가 12자를 초과하였습니다.")
@Size(max = 300, message = "인증 코드 길이를 초과하였습니다.")
String authorizationCode
) {
}

0 comments on commit 0cc829b

Please sign in to comment.