Changeset 325a55d for Prototype Application/Paw5/src/main
- Timestamp:
- 02/13/23 13:19:42 (21 months ago)
- Branches:
- main
- Children:
- c37c953
- Parents:
- 468b7b6 (diff), f0232fb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- Prototype Application/Paw5/src/main
- Files:
-
- 9 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Prototype Application/Paw5/src/main/java/finki/paw5/repository/UserRepository.java
r468b7b6 r325a55d 5 5 import org.springframework.stereotype.Repository; 6 6 7 7 8 @Repository 8 9 public interface UserRepository extends JpaRepository<User, Integer> { 10 User findByEmailAndPassword(String email, String password); 11 User findByEmail(String email); 9 12 }
Note:
See TracChangeset
for help on using the changeset viewer.