isValidStatus checks the task status enum.
(s string)
| 332 | |
| 333 | // isValidStatus checks the task status enum. |
| 334 | func isValidStatus(s string) bool { |
| 335 | return s == "backlog" || s == "in-progress" || s == "done" |
| 336 | } |
| 337 | |
| 338 | // cmdUpdateProject implements `flow update project <ref> [--priority <p>]`. |
| 339 | // Project field edits are minimal — priority is the only post-creation |