Vote #80752
未完了Provide status for issue children via REST API
0%
説明
When the children to an issue is requested with /issue/1.json?include=children they are returned in the format:
{
children: Array<{
id: number
tracker: {
id: number
name: string
}
subject: string
}>,
...
}
It would be very nice if also the status where returned, like so:
{
children: Array<{
id: number
tracker: {
id: number
name: string
}
status: {
id: number
name: string
}
subject: string
}>,
...
}
When displaying an overview of a parent issue it's often very helpful to be able to show the status of all child issues.
This can be worked around by sending an extra request like /issues.json?issue_id=2,3,4 for all child issues, but it feels wasteful and unnecessarily cumbersome for what I assume would be a quite common use case.
journals
--------------------------------------------------------------------------------