후원랭킹 전체보기 API 추가
This commit is contained in:
parent
00a6fa0c91
commit
ad66be3449
|
@ -237,7 +237,7 @@ class ExplorerService(
|
|||
isNotification = isNotification,
|
||||
notificationRecipientCount = notificationRecipientCount
|
||||
),
|
||||
memberDonationRanking = memberDonationRanking,
|
||||
userDonationRanking = memberDonationRanking,
|
||||
similarCreatorList = similarCreatorList,
|
||||
liveRoomList = liveRoomList,
|
||||
contentList = contentList,
|
||||
|
@ -291,7 +291,7 @@ class ExplorerService(
|
|||
0
|
||||
},
|
||||
totalCount = queryRepository.getMemberDonationRankingTotal(creatorId),
|
||||
memberDonationRanking = queryRepository.getMemberDonationRanking(
|
||||
userDonationRanking = queryRepository.getMemberDonationRanking(
|
||||
creatorId,
|
||||
offset = pageable.offset,
|
||||
limit = pageable.pageSize.toLong(),
|
||||
|
|
|
@ -5,7 +5,7 @@ data class GetDonationAllResponse(
|
|||
val accumulatedCansLastWeek: Int,
|
||||
val accumulatedCansThisMonth: Int,
|
||||
val totalCount: Int,
|
||||
val memberDonationRanking: List<MemberDonationRankingResponse>
|
||||
val userDonationRanking: List<MemberDonationRankingResponse>
|
||||
)
|
||||
|
||||
data class MemberDonationRankingResponse(
|
||||
|
|
Loading…
Reference in New Issue