유저 관심사, 라이브 관심사 - 연령제한 설정 추가

This commit is contained in:
2023-08-25 16:39:40 +09:00
parent d865ec3ef8
commit 118c5c2eed
2 changed files with 4 additions and 2 deletions

View File

@@ -30,7 +30,8 @@ class LiveTagQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) : Li
QGetLiveTagResponse(
liveTag.id,
liveTag.tag,
liveTag.image.prepend("/").prepend(cloudFrontHost)
liveTag.image.prepend("/").prepend(cloudFrontHost),
liveTag.isAdult
)
)
.from(liveTag)