Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW: Hide *ALL* args for empty subcommand
Lorenz Leutgeb committed 7 months ago
commit 5f8aa175e8a0a0fff9031351052b2777b23e3d0c
parent 105339a8960567ea3f6dc11f6ab151961ddcf28f
1 file changed +1 -1
modified crates/radicle-cli/src/commands/issue/args.rs
@@ -219,7 +219,7 @@ impl Default for Command {
#[derive(Parser, Debug, Default)]
pub(crate) struct EmptyArgs {
    /// Filter for the list of issues that are assigned to '<DID>' (default: me)
-
    #[arg(long, name = "DID")]
+
    #[arg(long, name = "DID", hide = true)]
    #[arg(default_missing_value = "me")]
    #[arg(num_args = 0..=1)]
    pub(crate) assigned: Option<Assigned>,