Resolved conflicts

This commit is contained in:
harish
2024-08-22 10:54:32 +05:30
33 changed files with 863 additions and 144 deletions

View File

@@ -6,4 +6,6 @@ import org.springframework.data.jpa.repository.JpaRepository;
import java.util.Optional;
public interface UserRepository extends JpaRepository<UserEntity, Long> {
UserEntity findByEmail(String email);
boolean existsByEmail(String email);
}