test #384

Merged
klaus merged 10 commits from test into main 2026-02-04 12:52:24 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 5eca3f770c - Show all commits

View File

@@ -5,5 +5,6 @@ data class GetRecentRoomInfoResponse(
val notice: String,
var coverImageUrl: String,
val coverImagePath: String,
val numberOfPeople: Int
val numberOfPeople: Int,
val genderRestriction: GenderRestriction
)

View File

@@ -311,7 +311,8 @@ class LiveRoomQueryRepositoryImpl(
liveRoom.notice,
liveRoom.coverImage.prepend("/").prepend(cloudFrontHost),
liveRoom.coverImage,
liveRoom.numberOfPeople
liveRoom.numberOfPeople,
liveRoom.genderRestriction
)
)
.from(liveRoom)