MCPcopy Create free account
hub / github.com/compozy/agh / taskChildToonRows

Function taskChildToonRows

internal/cli/task.go:4481–4496  ·  view source on GitHub ↗
(items []TaskSummaryRecord)

Source from the content-addressed store, hash-verified

4479}
4480
4481func taskChildToonRows(items []TaskSummaryRecord) [][]string {
4482 rows := make([][]string, 0, len(items))
4483 for idx := range items {
4484 item := &items[idx]
4485 rows = append(rows, []string{
4486 item.ID,
4487 item.Identifier,
4488 string(item.Scope),
4489 item.WorkspaceID,
4490 string(item.Status),
4491 formatTaskOwnership(item.Owner),
4492 item.Title,
4493 })
4494 }
4495 return rows
4496}
4497
4498func taskDependencyRows(items []TaskDependencyRecord) [][]string {
4499 rows := make([][]string, 0, len(items))

Callers 1

renderTaskDetailToonFunction · 0.85

Calls 2

appendFunction · 0.85
formatTaskOwnershipFunction · 0.85

Tested by

no test coverage detected