From 5eca3f770c802b9c7000a0ba78268ccad77a06fd Mon Sep 17 00:00:00 2001 From: Klaus Date: Mon, 2 Feb 2026 18:08:09 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B5=9C=EA=B7=BC=20=EB=B0=A9=20=EC=A0=95?= =?UTF-8?q?=EB=B3=B4=20=EC=84=B1=EB=B3=84=20=EC=A0=9C=ED=95=9C=20=ED=8F=AC?= =?UTF-8?q?=ED=95=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../vividnext/sodalive/live/room/GetRecentRoomInfoResponse.kt | 3 ++- .../kr/co/vividnext/sodalive/live/room/LiveRoomRepository.kt | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/live/room/GetRecentRoomInfoResponse.kt b/src/main/kotlin/kr/co/vividnext/sodalive/live/room/GetRecentRoomInfoResponse.kt index 4a076d23..87fa0a6a 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/live/room/GetRecentRoomInfoResponse.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/live/room/GetRecentRoomInfoResponse.kt @@ -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 ) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/live/room/LiveRoomRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/live/room/LiveRoomRepository.kt index 9fbac274..c64de8ab 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/live/room/LiveRoomRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/live/room/LiveRoomRepository.kt @@ -311,7 +311,8 @@ class LiveRoomQueryRepositoryImpl( liveRoom.notice, liveRoom.coverImage.prepend("/").prepend(cloudFrontHost), liveRoom.coverImage, - liveRoom.numberOfPeople + liveRoom.numberOfPeople, + liveRoom.genderRestriction ) ) .from(liveRoom)