website cleanup

This commit is contained in:
2025-12-24 14:01:52 +01:00
parent a7aee42409
commit 9b683a59d3
65 changed files with 880 additions and 745 deletions

View File

@@ -0,0 +1,50 @@
import { ApiProperty } from '@nestjs/swagger';
export class LeagueScoringChampionshipDTO {
@ApiProperty()
id!: string;
@ApiProperty()
name!: string;
@ApiProperty()
type!: string;
@ApiProperty()
sessionTypes!: string[];
@ApiProperty()
pointsPreview!: Array<{ sessionType: string; position: number; points: number }>;
@ApiProperty()
bonusSummary!: string[];
@ApiProperty()
dropPolicyDescription!: string;
}
export class LeagueScoringConfigDTO {
@ApiProperty()
leagueId!: string;
@ApiProperty()
seasonId!: string;
@ApiProperty()
gameId!: string;
@ApiProperty()
gameName!: string;
@ApiProperty({ required: false })
scoringPresetId?: string;
@ApiProperty({ required: false })
scoringPresetName?: string;
@ApiProperty()
dropPolicySummary!: string;
@ApiProperty({ type: [LeagueScoringChampionshipDTO] })
championships!: LeagueScoringChampionshipDTO[];
}