parent
1dba0a3d95
commit
2e66b5fa45
|
@ -40,7 +40,10 @@ class AdminAuditionRoleQueryRepositoryImpl(
|
||||||
)
|
)
|
||||||
.from(auditionRole)
|
.from(auditionRole)
|
||||||
.innerJoin(auditionRole.audition, audition)
|
.innerJoin(auditionRole.audition, audition)
|
||||||
.where(auditionRole.audition.id.eq(auditionId))
|
.where(
|
||||||
|
auditionRole.audition.id.eq(auditionId),
|
||||||
|
auditionRole.isActive.isTrue
|
||||||
|
)
|
||||||
.fetch()
|
.fetch()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue