summaryrefslogtreecommitdiff
path: root/src/main/java/com/mavlushechka/studentdatabase/repository/RoleRepository.java
blob: e82fdf9e9bc9905aa5bfe94005f421ab54ff9542 (plain)
1
2
3
4
5
6
7
8
9
10
package com.mavlushechka.studentdatabase.repository;

import com.mavlushechka.studentdatabase.domain.Role;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface RoleRepository extends MongoRepository<Role, String> {
    Role findByRole(String role);
}