test #9

Merged
klaus merged 6 commits from test into main 2023-08-20 19:22:23 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 82a6161abf - Show all commits

View File

@ -301,6 +301,7 @@ class LiveRoomService(
channelName = room.channelName,
beginDateTime = beginDateTime.format(DateTimeFormatter.ofPattern("yyyy.MM.dd E hh:mm a")),
isPaid = false,
isAdult = room.isAdult,
isPrivateRoom = room.type == LiveRoomType.PRIVATE,
password = room.password
)

View File

@ -9,6 +9,7 @@ data class GetRoomDetailResponse(
val title: String,
val notice: String,
var isPaid: Boolean,
val isAdult: Boolean,
val isPrivateRoom: Boolean,
val password: String?,
val tags: List<String>,