From 2119ad3f72a12b502a143968afad1ff3a7b49a1d Mon Sep 17 00:00:00 2001 From: haedoang Date: Wed, 6 Dec 2023 20:59:07 +0900 Subject: [PATCH] =?UTF-8?q?big=20fix:=20=EB=B9=84=EB=B0=80=EB=B2=88?= =?UTF-8?q?=ED=98=B8=20=EB=B3=80=EA=B2=BD=20=EC=9C=A0=ED=9A=A8=EC=84=B1=20?= =?UTF-8?q?=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/koliving/api/dto/ResetPasswordDto.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/koliving/api/dto/ResetPasswordDto.java b/src/main/java/com/koliving/api/dto/ResetPasswordDto.java index 6c63759f..335ce419 100644 --- a/src/main/java/com/koliving/api/dto/ResetPasswordDto.java +++ b/src/main/java/com/koliving/api/dto/ResetPasswordDto.java @@ -9,13 +9,13 @@ @Schema(description = "회원가입 - 비밀번호 재설정") @PasswordMatches public record ResetPasswordDto( - @Schema(description = "비밀번호 (소문자, 대문자, 숫자, 특수기호 필수)", minLength = 8, maxLength = 20, example = "Koliving1!") + @Schema(description = "비밀번호 (문자, 숫자 포함. 특수문자 선택)", minLength = 6, maxLength = 30, example = "Koliving1") @NotBlank - @Size(min = 8, max = 20) + @Size(min = 6, max = 30) @PasswordConstraint String password, - @Schema(description = "비밀번호 (소문자, 대문자, 숫자, 특수기호 필수)", minLength = 8, maxLength = 20, example = "Koliving1!") + @Schema(description = "비밀번호 (문자, 숫자 포함. 특수문자 선택)", minLength = 6, maxLength = 30, example = "Koliving1") String passwordVerify ) { }