test #6

Merged
klaus merged 3 commits from test into main 2023-08-20 14:45:39 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 73988d7b2c - Show all commits

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