cli: Add filtering based on author to `rad patch`
modified rad-patch.1.adoc
@@ -73,6 +73,9 @@ List patches in the current repository. The default is *--open*.
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-cli/examples/rad-patch.md
@@ -71,6 +71,17 @@ index 0000000..e69de29
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-cli/src/commands/patch.rs
@@ -21,6 +21,7 @@ mod show;
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -43,7 +44,7 @@ pub const HELP: Help = Help {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -80,6 +81,9 @@ List options
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -187,6 +191,8 @@ pub struct Options {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -197,6 +203,8 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -293,6 +301,12 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -398,6 +412,8 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -415,7 +431,11 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-cli/src/commands/patch/list.rs
@@ -1,3 +1,5 @@
| + | |
| + | |
|
|
|
|
|
@@ -15,6 +17,7 @@ use super::common;
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -29,6 +32,11 @@ pub fn run(
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|