Skip to content

Commit

Permalink
refactor(MemberRepositoryImpl): 개행 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
mingmingmon committed Jan 21, 2025
1 parent 04091cd commit cad564e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ public Page<MemberJpaEntity> findBirthdaysThisMonth(int month, Pageable pageable
birthdayInMonth(month)
.and(qMember.name.ne("관리자"))
.and(qMember.role.ne(Role.GUEST))
) .orderBy(orderSpecifiers.toArray(new OrderSpecifier[0]))
)
.orderBy(orderSpecifiers.toArray(new OrderSpecifier[0]))
.offset(pageable.getOffset())
.limit(pageable.getPageSize())
.fetch();
Expand Down

0 comments on commit cad564e

Please sign in to comment.