fix: 크리에이터 관리자, 관리자 콘텐츠 리스트

- isActive = True 태그만 조회되도록 수정
This commit is contained in:
Klaus 2025-06-02 20:25:54 +09:00
parent 2268f4a3fc
commit 97b2b38f8e
2 changed files with 2 additions and 0 deletions

View File

@ -140,6 +140,7 @@ class AdminAudioContentQueryRepositoryImpl(
audioContent.duration.isNotNull audioContent.duration.isNotNull
.and(audioContent.member.isNotNull) .and(audioContent.member.isNotNull)
.and(audioContentHashTag.audioContent.id.eq(audioContentId)) .and(audioContentHashTag.audioContent.id.eq(audioContentId))
.and(audioContentHashTag.isActive.isTrue)
) )
.fetch() .fetch()
} }

View File

@ -114,6 +114,7 @@ class CreatorAdminAudioContentQueryRepositoryImpl(
audioContent.duration.isNotNull audioContent.duration.isNotNull
.and(audioContent.member.isNotNull) .and(audioContent.member.isNotNull)
.and(audioContentHashTag.audioContent.id.eq(audioContentId)) .and(audioContentHashTag.audioContent.id.eq(audioContentId))
.and(audioContentHashTag.isActive.isTrue)
) )
.fetch() .fetch()
} }