test #258

Merged
klaus merged 26 commits from test into main 2025-02-14 18:09:12 +00:00
2 changed files with 6 additions and 3 deletions
Showing only changes of commit 39eb3d48a8 - Show all commits

View File

@ -7,5 +7,6 @@ data class GetRecommendSeriesListResponse @QueryProjection constructor(
val title: String,
val imageUrl: String,
val creatorId: Long,
val creatorNickname: String
val creatorNickname: String,
val creatorProfileImageUrl: String
)

View File

@ -30,7 +30,8 @@ class RecommendSeriesRepository(
series.title,
recommendSeries.imagePath.prepend("/").prepend(imageHost),
member.id,
member.nickname
member.nickname,
member.profileImage.prepend("/").prepend(imageHost)
)
)
.from(recommendSeries)
@ -57,7 +58,8 @@ class RecommendSeriesRepository(
series.title,
recommendSeries.imagePath.prepend("/").prepend(imageHost),
member.id,
member.nickname
member.nickname,
member.profileImage.prepend("/").prepend(imageHost)
)
)
.from(recommendSeries)