Compare commits

..

3 Commits

Author SHA1 Message Date
klaus c6853289ad Merge pull request 'test' (#213) from test into main
Reviewed-on: #213
2024-09-11 08:23:08 +00:00
Klaus 4c50143834 시리즈 콘텐츠 정렬
- 콘텐츠 오픈 날짜를 기준으로 정렬되도록 수정
2024-09-11 17:13:54 +09:00
Klaus d5e6ea8677 라이브 상세
- 본인인증을 하지 않은 유저가 19+방을 조회하는 경우 안내 멘트 수정
2024-09-11 16:52:53 +09:00
2 changed files with 3 additions and 3 deletions

View File

@ -59,10 +59,10 @@ class ContentSeriesContentQueryRepositoryImpl(
.and(audioContent.isActive.isTrue)
.and(audioContent.duration.isNotNull)
var orderBy = seriesContent.createdAt.desc()
var orderBy = audioContent.releaseDate.desc()
if (sortType == SeriesSortType.OLDEST) {
orderBy = seriesContent.createdAt.asc()
orderBy = audioContent.releaseDate.asc()
}
if (!isAdult) {

View File

@ -408,7 +408,7 @@ class LiveRoomService(
?: throw SodaException("이미 종료된 방입니다")
if (room.isAdult && member.auth == null) {
throw SodaException("본인인증이 필요한 서비스 입니다.\n소다라이브 마이페이지에서 본인인증 후 다시 이용해 주세요.")
throw SodaException("본인인증이 필요한 서비스 입니다.")
}
val beginDateTime = room.beginDateTime