test #101

Merged
klaus merged 2 commits from test into main 2023-12-13 16:14:50 +00:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit 7e02acd22c - Show all commits

View File

@ -12,6 +12,7 @@ data class GetRoomListResponse(
val price: Int,
val tags: List<String>,
val channelName: String?,
val creatorProfileImage: String,
val creatorNickname: String,
val creatorId: Long,
val isReservation: Boolean,

View File

@ -146,6 +146,11 @@ class LiveRoomService(
isAdult = it.isAdult,
price = it.price,
channelName = it.channelName,
creatorProfileImage = if (it.member!!.profileImage != null) {
"$cloudFrontHost/${it.member!!.profileImage}"
} else {
"$cloudFrontHost/profile/default-profile.png"
},
creatorNickname = it.member!!.nickname,
creatorId = it.member!!.id!!,
tags = it.tags