QualifiedID returns the task ID prefixed with the project ID.
()
| 16 | |
| 17 | // QualifiedID returns the task ID prefixed with the project ID. |
| 18 | func (pt *ProjectTask) QualifiedID() string { |
| 19 | return pt.ProjectID + ":" + pt.Task.ID |
| 20 | } |
| 21 | |
| 22 | // scanAllProjects loads tasks from all registered projects, qualifying IDs. |
| 23 | // Unreachable projects are skipped with a warning to stderr. |
no outgoing calls