(items []TaskSummaryRecord)
| 4479 | } |
| 4480 | |
| 4481 | func 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 | |
| 4498 | func taskDependencyRows(items []TaskDependencyRecord) [][]string { |
| 4499 | rows := make([][]string, 0, len(items)) |
no test coverage detected