Add chat hiding mentions follow counts waveform and post fixes

هذا الالتزام موجود في:
boutmoun123
2026-06-15 15:05:30 +03:00
الأصل 20fe06b5ed
التزام 3d2a41b22a
28 ملفات معدلة مع 1352 إضافات و75 حذوفات

عرض الملف

@@ -126,6 +126,14 @@ export class UpdatePostDto {
@Length(1, 30, { each: true })
mentionUsernames?: string[];
@ApiPropertyOptional({ type: [String], description: 'Set mentioned user ids (max 30)' })
@IsOptional()
@Transform(toStringArray)
@IsArray()
@ArrayMaxSize(30)
@IsMongoId({ each: true })
mentionedUserIds?: string[];
@ApiPropertyOptional({ description: 'Post location text' })
@IsOptional()
@IsString()