Skip to content

Commit

Permalink
feat: coffee chat 최신순 정렬 추가
Browse files Browse the repository at this point in the history
related issue #557
  • Loading branch information
jun02160 committed Nov 24, 2024
1 parent 29bf3e6 commit 15bdb3c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ public List<CoffeeChatInfoDto> findSearchCoffeeChatInfo(Long memberId, CoffeeCha
.leftJoin(member).on(coffeeChat.member.id.eq(member.id))
.leftJoin(memberCareer).on(coffeeChat.member.id.eq(memberCareer.memberId))
.where(builder)
.orderBy(coffeeChat.createdAt.desc())
.fetch();
}

Expand Down

0 comments on commit 15bdb3c

Please sign in to comment.