Skip to content

Commit

Permalink
refactor : 로그인 에러 반환 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
imenuuu committed May 20, 2024
1 parent edb66d9 commit 9ee87b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public interface UserRepository extends JpaRepository<User,Long>, UserCustomRepo

Optional<User> findBySocialIdAndSocialType(String socialId, SocialType socialType);

Optional<User> findByPhoneNumber(String phoneNumber);
Optional<User> findByPhoneNumberAndStatus(String phoneNumber, Status status);

Optional<User> findBySocialIdAndSocialTypeAndStatus(String id, SocialType socialType, Status status);
}

0 comments on commit 9ee87b3

Please sign in to comment.