diff --git a/src/main/kotlin/goodspace/bllsoneshot/repository/task/TaskRepository.kt b/src/main/kotlin/goodspace/bllsoneshot/repository/task/TaskRepository.kt index 3fa5f36..718dce9 100644 --- a/src/main/kotlin/goodspace/bllsoneshot/repository/task/TaskRepository.kt +++ b/src/main/kotlin/goodspace/bllsoneshot/repository/task/TaskRepository.kt @@ -28,7 +28,6 @@ interface TaskRepository : JpaRepository { SELECT t FROM Task t WHERE t.mentee.id = :userId AND t.date = :date - AND t.isResource = true """ ) fun findCurrentTasksIncludeResource(userId: Long, date: LocalDate): List