add space linking when create or update space

This commit is contained in:
faris Aljohari
2025-03-06 02:33:48 +03:00
parent 0d4afc40f2
commit 6864e000b8
3 changed files with 81 additions and 10 deletions

View File

@ -58,4 +58,11 @@ export class UpdateSpaceDto {
@ValidateNested({ each: true })
@Type(() => ModifyTagDto)
tags?: ModifyTagDto[];
@ApiProperty({
description: 'UUID of the Space',
example: 'd290f1ee-6c54-4b01-90e6-d701748f0851',
})
@IsString()
@IsOptional()
spaceModelUuid?: string;
}