Skip to content

Commit

Permalink
Merge pull request #248 from haedoang/feature/report
Browse files Browse the repository at this point in the history
big fix: 비밀번호 변경 유효성 업데이트
  • Loading branch information
haedoang authored Dec 6, 2023
2 parents f19572f + 2119ad3 commit 2d31386
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/koliving/api/dto/ResetPasswordDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
) {
}

0 comments on commit 2d31386

Please sign in to comment.