Skip to content

Commit

Permalink
[#78] 내가 만든 모임 최신순 정렬
Browse files Browse the repository at this point in the history
  • Loading branch information
yeseul106 committed Oct 26, 2023
1 parent 7200c19 commit 9879708
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions server/src/entity/meeting/meeting.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export class MeetingRepository extends Repository<Meeting> {
)
.leftJoinAndSelect('meeting.user', 'user')
.where('meeting.userId = :id', { id })
.orderBy('meeting.id', 'DESC')
.getManyAndCount();

return result;
Expand Down

0 comments on commit 9879708

Please sign in to comment.