Skip to content

Commit

Permalink
feat: 추천 축제 종료 기간 조건 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjin8678 committed May 31, 2024
1 parent 2a60e81 commit 4ea53bc
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ public List<FestivalV1Response> findPopularFestivals(LocalDate now) {
festivalQueryInfo.artistInfo)
)
.from(festival)
.where(festivalQueryInfo.artistInfo.ne("[]")
.and(festival.festivalDuration.endDate.goe(now)))
.where(festivalQueryInfo.artistInfo.ne("[]"))
.innerJoin(school).on(school.id.eq(festival.school.id))
.innerJoin(festivalQueryInfo).on(festivalQueryInfo.festivalId.eq(festival.id))
.orderBy(festival.id.desc())
Expand Down

0 comments on commit 4ea53bc

Please sign in to comment.