source: src/main/java/com/example/salonbella/repository/ConfirmationTokenRepository.java

Last change on this file was 74af394, checked in by makyjovanovsky <mjovanovski04@…>, 17 months ago

login/register with mail confirmation

  • Property mode set to 100644
File size: 476 bytes
Line 
1package com.example.salonbella.repository;
2
3import com.example.salonbella.entity.ConfirmationTokenEntity;
4import com.example.salonbella.entity.UserEntity;
5import org.springframework.data.jpa.repository.JpaRepository;
6import org.springframework.stereotype.Repository;
7
8import java.util.Optional;
9
10@Repository
11public interface ConfirmationTokenRepository extends JpaRepository<ConfirmationTokenEntity, Long> {
12 Optional<ConfirmationTokenEntity> findByToken(String token);
13
14}
Note: See TracBrowser for help on using the repository browser.