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

Fix : 어드민 멤버제거 기능에서 잘못 사용되는 UseCase 제거 #328

Merged
merged 2 commits into from
Nov 26, 2023

Commits on Nov 25, 2023

  1. [ Fix ] : 회원 탈퇴기능에서 잘못 사용되는 UseCase 제거

    - DeleteMember는 회원 스스로가 탈퇴할때를 가정한 UseCase로 Local의 Memeber Id를 함께 제거하는 로직이 있음
    - DeleteMemeberUseCase를 사용하지 않고 MemberRepository의 deleteMember 메서드를 사용하여 DB에서만 제거
    toastmeister1 committed Nov 25, 2023
    Configuration menu
    Copy the full SHA
    aefe7de View commit details
    Browse the repository at this point in the history
  2. [ Fix ] : 회원탈퇴 기능의 UseCase 명칭 변경

    - 'Delete' 라는 명칭이 어드민 기능 구현시 혼동을 줄 수 있어, 회원탈퇴를 명확히 나타내는 이름으로 수정합니다.
    toastmeister1 committed Nov 25, 2023
    Configuration menu
    Copy the full SHA
    344acbf View commit details
    Browse the repository at this point in the history