Skip to content
Snippets Groups Projects

Development to testing

Merged Ghost User requested to merge Development into testing
1 file
+ 5
3
Compare changes
  • Side-by-side
  • Inline
+ 5
3
@@ -62,15 +62,17 @@ export class newGameDTO {
@IsNotEmpty()
@Length(1, 255)
desc: string;
@IsNotEmpty()
@Validate(CenterJSON)
center: JSON;
@ValidateNested()
@Type(() => CenterDTO)
center: CenterDTO;
@IsDateString()
@IsNotEmpty()
startdate: string;
@IsDateString()
@IsNotEmpty()
enddate: string;
@Length(0, 65)
image: string;
}
export class GameStateDTO {
Loading