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

Function taskEventToonRows

internal/cli/task.go:4579–4592  ·  view source on GitHub ↗
(items []TaskEventRecord)

Source from the content-addressed store, hash-verified

4577}
4578
4579func taskEventToonRows(items []TaskEventRecord) [][]string {
4580 rows := make([][]string, 0, len(items))
4581 for _, item := range items {
4582 rows = append(rows, []string{
4583 item.ID,
4584 item.EventType,
4585 item.RunID,
4586 formatTaskActor(item.Actor),
4587 formatTaskOrigin(item.Origin),
4588 formatTime(item.Timestamp),
4589 })
4590 }
4591 return rows
4592}
4593
4594func formatTaskOwnership(owner *taskpkg.Ownership) string {
4595 if owner == nil {

Callers 1

renderTaskDetailToonFunction · 0.85

Calls 4

appendFunction · 0.85
formatTaskActorFunction · 0.85
formatTaskOriginFunction · 0.85
formatTimeFunction · 0.85

Tested by

no test coverage detected