재생목록 콘텐츠

- 크리에이터 프로필 이미지 추가
This commit is contained in:
Klaus 2024-12-08 15:44:42 +09:00
parent bf62482137
commit 0583a8a56f
2 changed files with 4 additions and 2 deletions

View File

@ -798,7 +798,8 @@ class AudioContentQueryRepositoryImpl(
audioContentTheme.theme,
audioContent.coverImage.prepend("/").prepend(imageHost),
audioContent.duration,
member.nickname
member.nickname,
member.profileImage.prepend("/").prepend(imageHost)
)
)
.from(audioContent)

View File

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