cli: Fix `rad issue edit`
Make the `rad issue edit` subcommand accessible to users.
This commit is contained in:
parent
474d21741e
commit
1c9670b90f
|
|
@ -195,6 +195,7 @@ impl Args for Options {
|
||||||
Value(val) if op.is_none() => match val.to_string_lossy().as_ref() {
|
Value(val) if op.is_none() => match val.to_string_lossy().as_ref() {
|
||||||
"c" | "show" => op = Some(OperationName::Show),
|
"c" | "show" => op = Some(OperationName::Show),
|
||||||
"d" | "delete" => op = Some(OperationName::Delete),
|
"d" | "delete" => op = Some(OperationName::Delete),
|
||||||
|
"e" | "edit" => op = Some(OperationName::Edit),
|
||||||
"l" | "list" => op = Some(OperationName::List),
|
"l" | "list" => op = Some(OperationName::List),
|
||||||
"o" | "open" => op = Some(OperationName::Open),
|
"o" | "open" => op = Some(OperationName::Open),
|
||||||
"r" | "react" => op = Some(OperationName::React),
|
"r" | "react" => op = Some(OperationName::React),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue