Conflict resolved

This commit is contained in:
harish
2024-08-27 14:29:13 +05:30
18 changed files with 399 additions and 36 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);
}