| 615 | } |
| 616 | |
| 617 | type projectRow struct { |
| 618 | Slug string `json:"slug"` |
| 619 | Name string `json:"name"` |
| 620 | Priority string `json:"priority"` |
| 621 | Status string `json:"status"` |
| 622 | Total int `json:"total"` |
| 623 | InProgress int `json:"in_progress"` |
| 624 | Backlog int `json:"backlog"` |
| 625 | Done int `json:"done"` |
| 626 | Archived bool `json:"archived,omitempty"` |
| 627 | Updated string `json:"updated,omitempty"` |
| 628 | } |
| 629 | |
| 630 | rows := make([]projectRow, 0, len(sortedProjects)) |
| 631 | for _, p := range sortedProjects { |
nothing calls this directly
no outgoing calls
no test coverage detected