test #247

Merged
klaus merged 9 commits from test into main 2024-12-17 13:43:45 +00:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 4ff5e9e163 - Show all commits

View File

@ -797,10 +797,12 @@ class AudioContentQueryRepositoryImpl(
audioContent.title,
audioContentTheme.theme,
audioContent.coverImage.prepend("/").prepend(imageHost),
audioContent.duration
audioContent.duration,
member.nickname
)
)
.from(audioContent)
.innerJoin(audioContent.member, member)
.innerJoin(audioContent.theme, audioContentTheme)
.where(audioContent.id.`in`(contentIdList))
.fetch()

View File

@ -29,5 +29,6 @@ data class AudioContentPlaylistContent @QueryProjection constructor(
val title: String,
val category: String,
val coverUrl: String,
val duration: String
val duration: String,
val creatorNickname: String
)