expandNextShortcutFilters appends --status and --priority values to nextFilters.
()
| 273 | |
| 274 | // expandNextShortcutFilters appends --status and --priority values to nextFilters. |
| 275 | func expandNextShortcutFilters() { |
| 276 | if nextStatus != "" { |
| 277 | nextFilters = append(nextFilters, "status="+nextStatus) |
| 278 | } |
| 279 | if nextPriority != "" { |
| 280 | nextFilters = append(nextFilters, "priority="+nextPriority) |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | // loadPhaseOrder reads phase identifiers from the viper config, preserving order. |
| 285 | // It uses the phase id when present, falling back to name for backwards compatibility. |
no outgoing calls
no test coverage detected