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> {
queryFactory
return queryFactory
.select(
QRecommendChannelContentItem(
audioContent.id,
@ -77,6 +77,5 @@ class RecommendChannelQueryRepository(
.where(audioContent.member.id.eq(creatorId))
.groupBy(audioContent.id)
.fetch()
return listOf()
}
}