Skip to content

Commit

Permalink
fix: false로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
skfotakf committed Sep 19, 2023
1 parent b521544 commit ff84635
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class MainRepositoryImpl(
.rightJoin(noticeEntity).on(noticeTagEntity.notice.eq(noticeEntity))
.rightJoin(tagInNoticeEntity).on(noticeTagEntity.tag.eq(tagInNoticeEntity))
.where(noticeTagEntity.tag.name.eq(tagEnum))
.where(noticeEntity.isDeleted.eq(false), noticeEntity.isPrivate.eq(true))
.where(noticeEntity.isDeleted.eq(false), noticeEntity.isPrivate.eq(false))
.orderBy(noticeEntity.isPinned.desc()).orderBy(noticeEntity.createdAt.desc())
.limit(6).distinct().fetch()
}
Expand Down

0 comments on commit ff84635

Please sign in to comment.