parent
8a03249759
commit
4ff5e9e163
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue