ent: better ent list --help

This commit is contained in:
Sebastian Kuzminsky 2025-07-12 14:24:20 -06:00
parent 88025c5dae
commit 28db7669f4
2 changed files with 10 additions and 1 deletions

View file

@ -25,6 +25,15 @@ enum Commands {
/// List issues.
List {
/// Filter string, describes issues to include in the list.
/// The filter string is composed of chunks separated by ":".
/// Each chunk is of the form "name=condition". The supported
/// names and their matching conditions are:
///
/// "state": Comma-separated list of states to list.
///
/// "assignee": Comma-separated list of assignees to list.
/// Defaults to all assignees if not set.
///
#[arg(default_value_t = String::from("state=New,Backlog,Blocked,InProgress"))]
filter: String,
},