라이브 정보 - 19금 여부 추가
This commit is contained in:
parent
1d217b9f75
commit
73988d7b2c
|
@ -672,6 +672,7 @@ class LiveRoomService(
|
|||
"$cloudFrontHost/profile/default-profile.png"
|
||||
},
|
||||
isFollowing = isFollowing,
|
||||
isAdult = room.isAdult,
|
||||
participantsCount = roomInfo.listenerCount + roomInfo.speakerCount + roomInfo.managerCount,
|
||||
totalAvailableParticipantsCount = room.numberOfPeople,
|
||||
speakerList = roomInfo.speakerList,
|
||||
|
|
|
@ -12,6 +12,7 @@ data class GetRoomInfoResponse(
|
|||
val creatorNickname: String,
|
||||
val creatorProfileUrl: String,
|
||||
val isFollowing: Boolean,
|
||||
val isAdult: Boolean,
|
||||
val participantsCount: Int,
|
||||
val totalAvailableParticipantsCount: Int,
|
||||
val speakerList: List<LiveRoomMember>,
|
||||
|
|
Loading…
Reference in New Issue