Commit a90c1b4b800e7236e1d6a5e22acd4225329a09ed
1 parent
589e1ad3
Enable JpaRepository for Comment
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/main/java/fr/plil/sio/examen/repositories/CommentRepository.java
... | ... | @@ -6,5 +6,5 @@ import org.springframework.data.jpa.repository.JpaRepository; |
6 | 6 | /** |
7 | 7 | * TODO: complete this interface for new find methods. |
8 | 8 | */ |
9 | -public interface CommentRepository { //extends JpaRepository<Comment, Long>{ | |
9 | +public interface CommentRepository extends JpaRepository<Comment, Long>{ | |
10 | 10 | } | ... | ... |