재생 목록 콘텐츠 조회
- 크리에이터 닉네임 추가
This commit is contained in:
@@ -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
|
||||
)
|
||||
|
Reference in New Issue
Block a user