mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	feat(server): improve validation of albums (#2188)
* feat(server): improve validation of albums * regenerate openapi + fix downloadArchive for web
This commit is contained in:
		@@ -1,7 +1,8 @@
 | 
			
		||||
import { Transform } from 'class-transformer';
 | 
			
		||||
import { IsBoolean, IsOptional, IsUUID } from 'class-validator';
 | 
			
		||||
import { IsBoolean, IsOptional } from 'class-validator';
 | 
			
		||||
import { toBoolean } from 'apps/immich/src/utils/transform.util';
 | 
			
		||||
import { ApiProperty } from '@nestjs/swagger';
 | 
			
		||||
import { ValidateUUID } from 'apps/immich/src/decorators/validate-uuid.decorator';
 | 
			
		||||
 | 
			
		||||
export class GetAlbumsDto {
 | 
			
		||||
  @IsOptional()
 | 
			
		||||
@@ -20,8 +21,6 @@ export class GetAlbumsDto {
 | 
			
		||||
   * Ignores the shared parameter
 | 
			
		||||
   * undefined: get all albums
 | 
			
		||||
   */
 | 
			
		||||
  @IsOptional()
 | 
			
		||||
  @IsUUID(4)
 | 
			
		||||
  @ApiProperty({ format: 'uuid' })
 | 
			
		||||
  @ValidateUUID({ optional: true })
 | 
			
		||||
  assetId?: string;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user