source: src/main/java/com/example/salonbella/repository/UserRepository.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: 341 bytes
Line 
1package com.example.salonbella.repository;
2
3import com.example.salonbella.entity.UserEntity;
4import org.springframework.data.jpa.repository.JpaRepository;
5import org.springframework.stereotype.Repository;
6
7@Repository
8public interface UserRepository extends JpaRepository<UserEntity, Long> {
9 UserEntity findByUsername(String username);
10}
Note: See TracBrowser for help on using the repository browser.