Skip to content

Commit

Permalink
feat: 전화번호 기반 사용자 존재 여부 확인 로직 정의(#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
Minjae-An committed Mar 14, 2024
1 parent e4c64ae commit f4b1867
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@
public interface UserRepository extends JpaRepository<User, Long> {

Optional<User> findByEmail(String email);

boolean existsByPhoneNumber(String phoneNumber);
}

0 comments on commit f4b1867

Please sign in to comment.