test #322

Merged
klaus merged 6 commits from test into main 2025-06-02 12:41:46 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 97b2b38f8e - Show all commits

View File

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

View File

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