add : ticket to task

This commit is contained in:
2026-07-20 11:54:39 +03:30
parent f66bc9fa8c
commit b855d81817
6 changed files with 67 additions and 5 deletions
@@ -34,6 +34,15 @@ export class CreateTaskDto {
@IsNotEmpty()
taskPhaseId: string;
@ApiProperty({
description: "ID of the related ticket",
required: false,
example: "c3d4e5f6-a7b8-9012-cdef-123456789012",
})
@IsUUID()
@IsOptional()
ticketId?: string;
@ApiProperty({
description: "IDs of users to assign to the task",
required: false,