최근 방 정보 성별 제한 포함
This commit is contained in:
@@ -5,5 +5,6 @@ data class GetRecentRoomInfoResponse(
|
|||||||
val notice: String,
|
val notice: String,
|
||||||
var coverImageUrl: String,
|
var coverImageUrl: String,
|
||||||
val coverImagePath: String,
|
val coverImagePath: String,
|
||||||
val numberOfPeople: Int
|
val numberOfPeople: Int,
|
||||||
|
val genderRestriction: GenderRestriction
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -311,7 +311,8 @@ class LiveRoomQueryRepositoryImpl(
|
|||||||
liveRoom.notice,
|
liveRoom.notice,
|
||||||
liveRoom.coverImage.prepend("/").prepend(cloudFrontHost),
|
liveRoom.coverImage.prepend("/").prepend(cloudFrontHost),
|
||||||
liveRoom.coverImage,
|
liveRoom.coverImage,
|
||||||
liveRoom.numberOfPeople
|
liveRoom.numberOfPeople,
|
||||||
|
liveRoom.genderRestriction
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.from(liveRoom)
|
.from(liveRoom)
|
||||||
|
|||||||
Reference in New Issue
Block a user