-
Notifications
You must be signed in to change notification settings - Fork 0
feat : 회원 탈퇴 (soft delete) API 구현 #34
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
Conversation
|
Caution Review failedThe pull request is closed. Walkthrough이 PR은 회원 관리 도메인에 프로필 삭제 관련 기능을 추가합니다. MemberController에 프로필 삭제를 위한 Changes
Sequence Diagram(s)sequenceDiagram
participant C as MemberController
participant S as MemberService
participant R as MemberRepository
participant M as Member
C->>S: deleteProfile(member)
S->>R: 회원 조회(memberId)
alt 회원 존재함
S->>M: delete() 호출
M-->>S: 삭제 완료
S-->>C: ApiResponse 반환 (성공 메시지 포함)
else 회원 미존재
S-->>C: GeneralException 발생
end
Possibly related PRs
Suggested reviewers
Poem
Tip 🌐 Web search-backed reviews and chat
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (3)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
#️⃣ 요약 설명
📝 작업 내용
코드에 대한 간단한 설명 부탁드립니다.
soft delete로 되어있기 때문에 탈퇴 회원의 deletedAt 필드에 값을 넣는 방식입니다.
동작 확인
💬 리뷰 요구사항(선택)
Summary by CodeRabbit