Skip to content

Commit

Permalink
[FIX] 프로젝트 요청 정렬 누락 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
happyjamy committed Feb 26, 2024
1 parent bec0e49 commit 08e851f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public CursorPaginationResult<projectJoinRequestRes> findByConditionWithPaginati
projectIdEq(projectId),
requestStatusEq(requestStatus)
)
// 오래 된 순
.orderBy(projectJoinRequest.id.asc())
.limit(pageable.getPageSize() + 1)
.fetch();

Expand Down

0 comments on commit 08e851f

Please sign in to comment.