오디션 #249

Merged
klaus merged 40 commits from test into main 2025-01-07 17:24:40 +00:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 2e66b5fa45 - Show all commits

View File

@ -40,7 +40,10 @@ class AdminAuditionRoleQueryRepositoryImpl(
)
.from(auditionRole)
.innerJoin(auditionRole.audition, audition)
.where(auditionRole.audition.id.eq(auditionId))
.where(
auditionRole.audition.id.eq(auditionId),
auditionRole.isActive.isTrue
)
.fetch()
}