Browse Source

remove unused DTO

Michel Heusschen 2 years ago
parent
commit
2e844696fc
1 changed files with 0 additions and 8 deletions
  1. 0 8
      server/apps/immich/src/api-v1/asset/dto/asset-file-upload.dto.ts

+ 0 - 8
server/apps/immich/src/api-v1/asset/dto/asset-file-upload.dto.ts

@@ -1,8 +0,0 @@
-import { ApiProperty } from '@nestjs/swagger';
-import { IsNotEmpty } from 'class-validator';
-
-export class AssetFileUploadDto {
-  @IsNotEmpty()
-  @ApiProperty({ type: 'string', format: 'binary' })
-  assetData!: any;
-}