Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit 97e90519 authored by Darrel Danadyaksa Poli's avatar Darrel Danadyaksa Poli
Browse files

[GREEN] Add UserRepository interface for user data access with email lookup

parent 83c65b8e
Branches master
No related tags found
1 merge request!1Login registration
package com.safetypin.authentication.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.safetypin.authentication.model.User;
@Repository
public interface UserRepository extends JpaRepository<User, Long> {
User findByEmail(String email);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment