-
Notifications
You must be signed in to change notification settings - Fork 2
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
[feat]: 회원가입 유효성 검증 추가, 닉네임 처리 #80
Conversation
@@ -96,10 +98,12 @@ public void deleteInactiveUsers() { | |||
} | |||
@Transactional | |||
public void deleteInactiveUsersTest() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
언제 동작하는건가요 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
deleteInactiveUsers와 필터링 날짜만 다르고 같은 기능으로 테스트용으로 만들어놨습니다! 지금은 UserController의 hardDeleteTest에서 호출할 때 동작합니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다~!
private AdditionalInfo additionalInfo; | ||
} | ||
|
||
@Getter | ||
public static class AdditionalInfo{ | ||
@NotNull | ||
@NotBlank | ||
private String nickname; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
닉네임도 최대 사이즈 제한 있어야 할 거 같아용
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵 추가하겠습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@scheduled annotation으로 실제로 서버에서 하루 주기로 확인해서 지우는 함수 나중에 추가하면 좋을 것 같아요!
저번에 회원 탈퇴 맡았을 때 작성했었는데 날아가버린 .. ㅜ
엇 그거는 남겨 두고 저거 추가적으로 테스트 때문에 작성한거에요! |
PULL REQUEST
🎋 작업중인 브랜치
💡 작업동기
🔑 주요 변경사항
💡 관련 이슈
x