Match Figma profile, blocks, auth, and archive backend

هذا الالتزام موجود في:
boutmoun123
2026-06-28 18:46:01 +03:00
الأصل 3298338e70
التزام 36ac36e333
44 ملفات معدلة مع 1245 إضافات و39 حذوفات

عرض الملف

@@ -22,6 +22,18 @@ export class CreateReelDto {
@Length(0, 2200)
content?: string;
@ApiPropertyOptional({ maxLength: 2200, description: 'Text displayed above reel media' })
@IsOptional()
@IsString()
@Length(0, 2200)
contentTop?: string;
@ApiPropertyOptional({ maxLength: 2200, description: 'Text displayed below reel media' })
@IsOptional()
@IsString()
@Length(0, 2200)
contentBottom?: string;
@ApiPropertyOptional({ description: 'Reel video URL (if not uploading videoFile)' })
@IsOptional()
@IsUrl({ require_tld: false })