Skip to content

Commit

Permalink
RoleRepository created
Browse files Browse the repository at this point in the history
  • Loading branch information
Hdelegido committed Mar 6, 2024
1 parent 7aaa123 commit dc6413b
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package cat.udl.eps.softarch.demo.repository;

import cat.udl.eps.softarch.demo.domain.Role;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.PagingAndSortingRepository;
import org.springframework.data.rest.core.annotation.RepositoryRestResource;

@RepositoryRestResource
public interface RoleRepository extends CrudRepository<Role, String>, PagingAndSortingRepository<Role, String> {
}

0 comments on commit dc6413b

Please sign in to comment.