1
This commit is contained in:
Christoph
2020-04-16 02:30:56 +02:00
parent db2f1ec546
commit c460a3a20b
3 changed files with 17 additions and 7 deletions

View File

@ -14,6 +14,6 @@ public interface EventRepository extends CrudRepository<EventDTO, Long> {
// ####################################### EVENT DTOs ########################################
@Query("SELECT *")
@Query("SELECT * FROM event")
List<EventDTO> findAllEvents();
}