feat(RunnerOrganizationService.runnerOrganizationControllerGetRunners): load all runners in org
All checks were successful
Build Latest and dev images / build-container (push) Successful in 1m7s

This commit is contained in:
Philipp Dormann 2025-03-26 15:34:38 +01:00
parent f734d1e3f6
commit 7c10d95c1c
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314
3 changed files with 3 additions and 3 deletions

View File

@ -125,7 +125,7 @@
let runners =
await RunnerOrganizationService.runnerOrganizationControllerGetRunners(
o.id,
true
false
);
let cards = [];
for (let runner of runners) {

View File

@ -104,7 +104,7 @@
let runners =
await RunnerOrganizationService.runnerOrganizationControllerGetRunners(
o.id,
true
false
);
let certificateRunners = [];
for (let runner of runners) {

View File

@ -68,7 +68,7 @@
let runners =
await RunnerOrganizationService.runnerOrganizationControllerGetRunners(
o.id,
true
false
);
await documentServer
.generateContracts(runners, locale)