Update code

This commit is contained in:
harish
2024-08-26 12:45:20 +05:30
parent 9b5e6a4c5c
commit 83e7c898bd
3 changed files with 3 additions and 6 deletions

View File

@@ -8,4 +8,5 @@ import java.util.Optional;
public interface UserRepository extends JpaRepository<UserEntity, Long> {
Optional<UserEntity> findByEmailIgnoreCase(String email);
boolean existsByEmailIgnoreCase(String email);
UserEntity findByEmail(String email);
}