라이브 정보 - 19금 여부 추가

This commit is contained in:
Klaus 2023-08-20 23:27:42 +09:00
parent 1d217b9f75
commit 73988d7b2c
2 changed files with 2 additions and 0 deletions

View File

@ -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,

View File

@ -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>,