TaskFilter holds optional filters for ListTasks.
| 189 | |
| 190 | // TaskFilter holds optional filters for ListTasks. |
| 191 | type TaskFilter struct { |
| 192 | Status string |
| 193 | Project string |
| 194 | Priority string |
| 195 | Kind string // "regular" (default), "playbook_run", or "" for all |
| 196 | PlaybookSlug string // optional; filter to runs of one playbook |
| 197 | Tag string // optional; only tasks carrying this tag (already normalized) |
| 198 | Tags []string // optional; tasks must carry ALL of these (intersection; already normalized) |
| 199 | Since string // RFC3339 or "" for no lower bound |
| 200 | IncludeArchived bool |
| 201 | ExcludeDone bool // hide status=done; ignored if Status is set explicitly |
| 202 | } |
| 203 | |
| 204 | // ProjectFilter is the equivalent for ListProjects. |
| 205 | type ProjectFilter struct { |
nothing calls this directly
no outgoing calls
no test coverage detected