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: 회원 탈퇴 연관관계 끊기 구현 #153

Merged
merged 3 commits into from
Nov 22, 2024

Conversation

ywonchae1
Copy link
Contributor

@ywonchae1 ywonchae1 commented Nov 21, 2024

📋 상세 설명

  • 회원 탈퇴를 구현하였습니다. 탈퇴 시 연관관계를 끊어가는 과정에서 복잡성이 증가했습니다.
  • 논리는 다음과 같습니다.

탈퇴하는 사람이 MASTER이면 group을 삭제해야 함
memberId 기준으로 groupMember 통해 groupId 조회
groupId 기준으로 video 조회하여 삭제 (S3 배치 작업 추가 필요)
groupId 기준으로 cctv 조회하여 정보 목록 확인
cctv 목록을 순회하여 kvs 채널 삭제
cctv 상태 shadow에서 kvsChannelDeleteRequested 필드 true로 pub -> (iot 기기 삭제는 모바일에서)
groupMember 삭제
group 삭제
member 삭제
(MASTER iot 기기 삭제 모바일에서 진행하기)

그렇지 않으면 groupMember와 member만 삭제
(PARTICIPANT iot 기기 삭제 모바일에서 진행하기)

📸 스크린샷

Screenshot 2024-11-21 at 17 40 02

📚 자료

@ywonchae1 ywonchae1 linked an issue Nov 21, 2024 that may be closed by this pull request
11 tasks
@github-actions github-actions bot added the feature 기능 추가 label Nov 21, 2024
Copy link
Member

@seok019283501 seok019283501 left a comment

Choose a reason for hiding this comment

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

수고하셨습니다아

@ywonchae1 ywonchae1 merged commit 3a79dac into develop Nov 22, 2024
2 checks passed
@ywonchae1 ywonchae1 deleted the feature/152-delete-account branch November 22, 2024 04:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature 기능 추가
Projects
None yet
Development

Successfully merging this pull request may close these issues.

🐶 회원 탈퇴 연관관계 끊기 구현부 추가
2 participants