test #258

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

View File

@ -679,7 +679,8 @@ class AudioContentQueryRepositoryImpl(
audioContent.price, audioContent.price,
audioContent.duration, audioContent.duration,
member.id, member.id,
member.nickname member.nickname,
member.profileImage.prepend("/").prepend(imageHost)
) )
) )

View File

@ -17,5 +17,6 @@ data class GetAudioContentRankingItem @QueryProjection constructor(
@JsonProperty("price") val price: Int, @JsonProperty("price") val price: Int,
@JsonProperty("duration") val duration: String, @JsonProperty("duration") val duration: String,
@JsonProperty("creatorId") val creatorId: Long, @JsonProperty("creatorId") val creatorId: Long,
@JsonProperty("creatorNickname") val creatorNickname: String @JsonProperty("creatorNickname") val creatorNickname: String,
@JsonProperty("creatorProfileImageUrl") val creatorProfileImageUrl: String
) )

View File

@ -82,7 +82,8 @@ class RankingRepository(
audioContent.price, audioContent.price,
audioContent.duration, audioContent.duration,
member.id, member.id,
member.nickname member.nickname,
member.profileImage.prepend("/").prepend(imageHost)
) )
) )
@ -365,7 +366,8 @@ class RankingRepository(
audioContent.price, audioContent.price,
audioContent.duration, audioContent.duration,
member.id, member.id,
member.nickname member.nickname,
member.profileImage.prepend("/").prepend(imageHost)
) )
) )
.from(order) .from(order)
@ -404,7 +406,8 @@ class RankingRepository(
audioContent.price, audioContent.price,
audioContent.duration, audioContent.duration,
member.id, member.id,
member.nickname member.nickname,
member.profileImage.prepend("/").prepend(imageHost)
) )
) )
.from(order) .from(order)