MCPcopy Create free account
hub / github.com/Facets-cloud/flow / projectRow

Struct projectRow

internal/app/list.go:617–628  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected