test #247

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

View File

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

View File

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