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: 회원 탈퇴 기능 구현 #335

Merged
merged 14 commits into from
Sep 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: Service의 반환 값 수정
hyunji1203 committed Sep 16, 2023

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 42cc780b0c60dc76600c9ee72c59cdecab6b6335
Original file line number Diff line number Diff line change
@@ -14,5 +14,5 @@ interface AuthService {
): Response<NaagaAuthDto>

@DELETE("/auth/unlink")
suspend fun withdrawalMember()
suspend fun withdrawalMember(): Response<Unit>?
Copy link
Collaborator

Choose a reason for hiding this comment

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

[P5]
withdrawalMember 메서드의 반환값이 nullable하게 한 이유가 있나요?🤔

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

제가 졸린 상태로 비몽사몽 코딩을 하다보니 저런 nullable 죄악을 저질러 버렸네요...바로 non-nullable하게 바꿨습니다...🥲

}