This commit is contained in:
wayanrivan
2026-05-06 16:23:32 +07:00
parent ed5a1288c3
commit b11ba7a53f
2 changed files with 2 additions and 1 deletions

View File

@ -38,4 +38,4 @@
"notification": "http://127.0.0.1:7004/",
"hrms": "https://tcelanatl.shiblysolution.id/hrms/"
}
}
}

View File

@ -219,6 +219,7 @@ export class UserController {
.setParameters(subquery.getParameters())
.leftJoinAndSelect("User.roles", "roles")
.leftJoinAndSelect("roles.application", "application")
.where("User.is_doctor = :is_doctor", { is_doctor: true })
.orderBy("User." + param.order_field, param.order_direction)
.distinct(true);