Skip to content

Commit

Permalink
Task 39 : Define UserRepository
Browse files Browse the repository at this point in the history
  • Loading branch information
Rapter1990 committed Jul 2, 2024
1 parent bb7597c commit f90337a
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.springboot.ratelimiter.user.repository;

import com.springboot.ratelimiter.user.model.UserEntity;
import org.springframework.data.jpa.repository.JpaRepository;

public interface UserRepository extends JpaRepository<UserEntity, String> {

boolean existsByEmail(String email);
}

0 comments on commit f90337a

Please sign in to comment.