최근 방 정보 성별 제한 포함

This commit is contained in:
2026-02-02 18:08:09 +09:00
parent ac5741b9af
commit 5eca3f770c
2 changed files with 4 additions and 2 deletions

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)