Skip to content
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

Merged
merged 6 commits into from
Feb 14, 2024

Conversation

wu-seong
Copy link
Contributor

PULL REQUEST

🎋 작업중인 브랜치

💡 작업동기

  • 회원가입 구현

🔑 주요 변경사항

  • 회원가입 요청 DTO 유효성 검증 추가
  • toUser 메서드 builder에 nickname 빌드 추가
  • 카카오 연결끊기 요청에서 KakaoAK 중복 추가 되던 로직 수정

💡 관련 이슈

x

@wu-seong wu-seong added ✨ feat 새로운 기능 추가 🐛 fix 버그 수정 labels Feb 13, 2024
@wu-seong wu-seong self-assigned this Feb 13, 2024
@wu-seong wu-seong linked an issue Feb 13, 2024 that may be closed by this pull request
2 tasks
@@ -96,10 +98,12 @@ public void deleteInactiveUsers() {
}
@Transactional
public void deleteInactiveUsersTest() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

언제 동작하는건가요 ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

deleteInactiveUsers와 필터링 날짜만 다르고 같은 기능으로 테스트용으로 만들어놨습니다! 지금은 UserController의 hardDeleteTest에서 호출할 때 동작합니다

Copy link
Contributor

@kimjm9841 kimjm9841 left a 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;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

닉네임도 최대 사이즈 제한 있어야 할 거 같아용

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

넵 추가하겠습니다!

Copy link
Contributor

@realisshomyang realisshomyang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@scheduled annotation으로 실제로 서버에서 하루 주기로 확인해서 지우는 함수 나중에 추가하면 좋을 것 같아요!
저번에 회원 탈퇴 맡았을 때 작성했었는데 날아가버린 .. ㅜ

@wu-seong
Copy link
Contributor Author

엇 그거는 남겨 두고 저거 추가적으로 테스트 때문에 작성한거에요!

@wu-seong wu-seong merged commit d1dbb8c into dev Feb 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 fix 버그 수정 ✨ feat 새로운 기능 추가
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[feat]: 회원가입 닉네임 처리 추가 및 유효성 검증
3 participants