Moved logic to backend
All checks were successful
Gitea/swiss-client/pipeline/head This commit looks good

This commit is contained in:
2025-09-25 23:14:32 +02:00
parent 2c33c9a68d
commit cdf27f1948
3 changed files with 76 additions and 48 deletions

View File

@@ -12,6 +12,9 @@ export class Tournament {
costsPerEvent: number[] = [10, 20, 0];
courts: number;
active: boolean;
playersPlaying: number[];
playersCounting: number[];
playersAvailable: number[];
static getStatus(tournament: Tournament): string {
if (tournament.status == "CLOSED") return "Afgerond";