-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 멤버 탈퇴 api 구현 * feat: 멤버 탈퇴 service 구현 * feat: 멤버 관련 에러 코드 추가 * refactor: refresh 토큰 삭제 로직 추가 * feat: 쿠키 제거 로직 추가 * remove: 쿠키 제거 로직 제거 * feat: 멤버 softDelete 메서드 추가 * refactor: 어드민 멤버 삭제 softDelete로 변경 * fix: 이미 상태가 delete인 경우 예외 처리 * refactor: soft deleted 회원 로그인 시도 시 예외 처리 * refactor: 상태 확인 로직 MemberStatus로 이동 * refactor: 조건 수정 * fix: 재가입 가능하도록 수정 * remove: 사용하지 않는 메서드 제거 * fix: 에러 코드 수정 * fix: 메서드명 수정 * remove: 사용하지 않는 의존성 제거 * fix: 상태코드 수정
- Loading branch information
1 parent
a2fc43b
commit a223438
Showing
9 changed files
with
63 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 1 addition & 5 deletions
6
src/main/java/com/gdschongik/gdsc/domain/member/dao/MemberRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
package com.gdschongik.gdsc.domain.member.dao; | ||
|
||
import com.gdschongik.gdsc.domain.member.domain.Member; | ||
import java.util.Optional; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
|
||
public interface MemberRepository extends JpaRepository<Member, Long>, MemberCustomRepository { | ||
|
||
Optional<Member> findByOauthId(String oauthId); | ||
} | ||
public interface MemberRepository extends JpaRepository<Member, Long>, MemberCustomRepository {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters