Add --author and --authored flags to "rad issue (list)"
modified crates/radicle-cli/src/commands/issue.rs
@@ -2,6 +2,8 @@ mod args;
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -196,8 +198,14 @@ pub fn run(args: Args, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
| + | |
|
|
|
|
|
@@ -241,6 +249,7 @@ pub fn run(args: Args, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -272,6 +281,12 @@ where
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-cli/src/commands/issue/args.rs
@@ -212,6 +212,20 @@ pub(crate) struct EmptyArgs {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -242,6 +256,20 @@ pub(crate) struct ListArgs {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -296,6 +324,8 @@ impl From<EmptyArgs> for ListArgs {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|