Added tournament active/inactive option

This commit is contained in:
2025-08-11 22:50:09 +02:00
parent ce497ee7d8
commit f20d9dfc92
3 changed files with 13 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ export class Tournament {
maxEvents: number;
costsPerEvent: number[] = [0, 0, 0];
courts: number;
active: boolean;
static getStatus(tournament: Tournament): string {
if (tournament.status == "CLOSED") return "Afgerond";