harden media

This commit is contained in:
2025-12-31 15:39:28 +01:00
parent 92226800df
commit 8260bf7baf
413 changed files with 8361 additions and 1544 deletions

View File

@@ -14,9 +14,9 @@ export class DashboardDriverSummaryDTO {
@IsString()
country!: string;
@ApiProperty()
@ApiProperty({ nullable: true })
@IsString()
avatarUrl!: string;
avatarUrl!: string | null;
@ApiProperty({ nullable: true })
@IsOptional()

View File

@@ -14,7 +14,7 @@ export class DashboardFriendSummaryDTO {
@IsString()
country!: string;
@ApiProperty()
@ApiProperty({ nullable: true })
@IsString()
avatarUrl!: string;
avatarUrl!: string | null;
}