-
Notifications
You must be signed in to change notification settings - Fork 1
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
사용자 탈퇴 요청 시 피드백 받는 부분 수정 #281
Conversation
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.
의견 남겼습니다!
if (comment.isBlank()) { | ||
return UserDeleteResponse.builder() | ||
.totalDeleteUserCount(totalDeleteUserCount) | ||
.totalDeleteUserList(users.stream() |
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.
null 이 안들어오게 바껴서 이 부분 comment 값에 상관없이 처리하고
createUserDeleteMessage 에서 comment 비교하는 부분을 수정하면
코드가 더 깔끔해질 것 같은데 어떠신가요?!
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.
좋은 의견입니다! if (!userDeleteResponse.getComment().isBlank())
괜찮을까요?!
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.
의견 반영 감사합니다!!
✒️ 관련 이슈번호
🔑 Key Changes
📢 To Reviewers