Skip to content

Commit

Permalink
hotfix: 스토리 공유 된 것만 리스트 조회하기
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunzxn committed Jun 24, 2024
1 parent 05d538b commit 141d24b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public interface DiaryRepository extends JpaRepository<Diary, Long>, CustomDiary
+ " left join fetch d.member m"
+ " left join fetch m.profileImage"
+ " left join fetch m.group"
+ " where d.isShared = true"
+ " order by d.id desc")
Slice<Diary> findPage(Pageable pageable);
}
Expand Down

0 comments on commit 141d24b

Please sign in to comment.