diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt index a8eac5e5..e8e4453a 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt @@ -405,23 +405,6 @@ class ExplorerService( listOf() } - // 차단한 크리에이터 인지 체크 - val activitySummary = if (isCreator) { - // 활동요약 (라이브 횟수, 라이브 시간, 라이브 참여자, 콘텐츠 수) - val liveCount = queryRepository.getLiveCount(creatorId) ?: 0 - val liveTime = queryRepository.getLiveTime(creatorId) - val liveContributorCount = queryRepository.getLiveContributorCount(creatorId) ?: 0 - val contentCount = queryRepository.getContentCount(creatorId) ?: 0 - GetCreatorActivitySummary( - liveCount = liveCount, - liveTime = liveTime, - liveContributorCount = liveContributorCount, - contentCount = contentCount - ) - } else { - GetCreatorActivitySummary(0, 0, 0, 0) - } - val seriesList = if (isCreator && !isBlock) { seriesService .getSeriesList( @@ -467,7 +450,6 @@ class ExplorerService( communityPostList = communityPostList, channelDonationList = channelDonationList, cheers = cheers, - activitySummary = activitySummary, seriesList = seriesList, isBlock = isBlock, isCreatorRole = isCreator diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorProfileResponse.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorProfileResponse.kt index 50d7665c..645561f5 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorProfileResponse.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorProfileResponse.kt @@ -18,7 +18,6 @@ data class GetCreatorProfileResponse( val communityPostList: List, val channelDonationList: List, val cheers: GetCheersResponse, - val activitySummary: GetCreatorActivitySummary, val seriesList: List, val isBlock: Boolean, val isCreatorRole: Boolean