feat : add collaborators to Task DTO
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -17,6 +17,7 @@ export type Task = {
|
|||||||
effort: TaskEffort | null
|
effort: TaskEffort | null
|
||||||
priority: TaskPriority | null
|
priority: TaskPriority | null
|
||||||
assignee: UserData | null
|
assignee: UserData | null
|
||||||
|
collaborators: UserData[]
|
||||||
group: TaskGroup | null
|
group: TaskGroup | null
|
||||||
project: Project | null
|
project: Project | null
|
||||||
tags: TaskTag[]
|
tags: TaskTag[]
|
||||||
@@ -55,6 +56,7 @@ export type TaskWrite = {
|
|||||||
effort: string | null
|
effort: string | null
|
||||||
priority: string | null
|
priority: string | null
|
||||||
assignee: string | null
|
assignee: string | null
|
||||||
|
collaborators?: string[]
|
||||||
group: string | null
|
group: string | null
|
||||||
project: string
|
project: string
|
||||||
tags: string[]
|
tags: string[]
|
||||||
|
|||||||
Reference in New Issue
Block a user