simplify the logic a bit and add suggestions to repl and cli

This commit is contained in:
Robin Olsen
2026-03-12 14:13:22 +01:00
parent 1eb5d4a905
commit ff99ba59fa
3 changed files with 32 additions and 40 deletions

View File

@@ -11,7 +11,7 @@ import (
// Variables for completion options and functions.
var (
typeOptions = []string{"bug", "feature", "task", "chore"}
statusOptions = []string{"open", "closed", "in_progress", "ready_to_sprint"}
statusOptions = []string{"open", "closed", "in_progress", "blocked", "ready_to_sprint"}
priorityRange = []string{"0", "1", "2", "3", "4"}
)