주문목록 - 크리에이터 닉네임 추가 #29

Merged
klaus merged 16 commits from test into main 2023-09-08 16:29:31 +00:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 056e575e7c - Show all commits

View File

@ -451,6 +451,7 @@ class ExplorerQueryRepository(
GetCheersResponseItem(
cheersId = it.id!!,
memberId = it.member!!.id!!,
nickname = it.member!!.nickname,
profileUrl = if (it.member!!.profileImage != null) {
"$cloudFrontHost/${it.member!!.profileImage}"
@ -467,6 +468,7 @@ class ExplorerQueryRepository(
GetCheersResponseItem(
cheersId = cheers.id!!,
memberId = cheers.member!!.id!!,
nickname = cheers.member!!.nickname,
profileUrl = if (cheers.member!!.profileImage != null) {
"$cloudFrontHost/${cheers.member!!.profileImage}"

View File

@ -7,6 +7,7 @@ data class GetCheersResponse(
data class GetCheersResponseItem(
val cheersId: Long,
val memberId: Long,
val nickname: String,
val profileUrl: String,
val content: String,