feat(orgs): Also resolve child-teams' distances and add them to org total

This commit is contained in:
2023-05-10 13:37:54 +02:00
parent f2832a2dae
commit 8d9418635d
2 changed files with 4 additions and 1 deletions

View File

@@ -67,6 +67,9 @@ export class ResponseRunnerOrganization extends ResponseRunnerGroup implements I
for (let team of org.teams) {
this.teams.push(team.toResponse());
}
for (const team of this.teams) {
this.total_distance += team.total_distance;
}
}
if (!org.key) { this.registrationEnabled = false; }