- Timestamp:
- 01/08/21 20:46:33 (4 years ago)
- Branches:
- master
- Children:
- bd38a55
- Parents:
- 31fc5c8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/it/finki/tinki/repository/TeamRepository.java
r31fc5c8 r14b648e 1 1 package it.finki.tinki.repository; 2 2 3 import it.finki.tinki.model.Users.Company; 3 4 import it.finki.tinki.model.Users.Team; 4 5 import org.springframework.data.jpa.repository.JpaRepository; … … 11 12 Team findByEmailAndPassword(String email, String password); 12 13 Optional<Team> findByEmail(String email); 14 Optional<Team> findByIdAndEmail(Long id, String email); 13 15 }
Note:
See TracChangeset
for help on using the changeset viewer.