test #327

Merged
klaus merged 13 commits from test into main 2025-07-14 11:07:58 +00:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit 81e82ad731 - Show all commits

View File

@ -61,7 +61,7 @@ class RecommendChannelQueryRepository(
} }
fun getContentsByCreatorIdLikeDesc(creatorId: Long): List<RecommendChannelContentItem> { fun getContentsByCreatorIdLikeDesc(creatorId: Long): List<RecommendChannelContentItem> {
queryFactory return queryFactory
.select( .select(
QRecommendChannelContentItem( QRecommendChannelContentItem(
audioContent.id, audioContent.id,
@ -77,6 +77,5 @@ class RecommendChannelQueryRepository(
.where(audioContent.member.id.eq(creatorId)) .where(audioContent.member.id.eq(creatorId))
.groupBy(audioContent.id) .groupBy(audioContent.id)
.fetch() .fetch()
return listOf()
} }
} }