응원글 - memberId 추가
This commit is contained in:
parent
febfa442fa
commit
056e575e7c
|
@ -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}"
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue