| |
/// Accept a proposed revision to the identity document
|
| |
#[clap(alias("a"))]
|
| |
Accept {
|
| - |
/// REV of the revision to accept
|
| + |
/// Proposed revision to accept
|
| |
#[arg(value_name = "REV")]
|
| |
revision: Rev,
|
| |
},
|
| |
/// Reject a proposed revision to the identity document
|
| |
#[clap(alias("r"))]
|
| |
Reject {
|
| - |
/// REV of the revision to reject
|
| + |
/// Proposed revision to reject
|
| |
#[arg(value_name = "REV")]
|
| |
revision: Rev,
|
| |
},
|
| |
/// Edit an existing revision to the identity document
|
| |
#[clap(alias("e"))]
|
| |
Edit {
|
| - |
/// REV of the edit
|
| + |
/// Proposed revision to edit
|
| |
#[arg(value_name = "REV")]
|
| |
revision: Rev,
|
| |
|
| |
/// Propose a new revision to the identity document
|
| |
#[clap(alias("u"))]
|
| |
Update {
|
| - |
/// Set the title for the new revision
|
| + |
/// Set the title for the new proposal
|
| |
#[arg(long)]
|
| |
#[arg(value_name = "STRING")]
|
| |
title: Option<Title>,
|
| |
|
| - |
/// Set the description for the new revision
|
| + |
/// Set the description for the new proposal
|
| |
#[arg(long)]
|
| |
#[arg(value_name = "STRING")]
|
| |
description: Option<String>,
|
| |
#[arg(value_name = "NUM")]
|
| |
threshold: Option<usize>,
|
| |
|
| - |
/// Update the identity by setting the repository visibility to private or public
|
| + |
/// Update the identity by setting the repository's visibility to private or public
|
| |
#[arg(long)]
|
| |
#[arg(value_name = "VISIBILITY", value_parser = EditVisibilityParser)]
|
| |
visibility: Option<EditVisibility>,
|
| |
|
| - |
/// Update the identity by giving a specific peer access to a private repository
|
| + |
/// Update the identity by giving a specific DID access to a private repository
|
| |
#[arg(long)]
|
| |
#[arg(value_name = "DID")]
|
| |
#[arg(action = clap::ArgAction::Append)]
|
| |
allow: Vec<Did>,
|
| |
|
| - |
/// Update the identity by removing a specific peer’s access to a private repository
|
| + |
/// Update the identity by removing a specific DID's access from a private repository
|
| |
#[arg(long)]
|
| |
#[arg(value_name = "DID")]
|
| |
#[arg(action = clap::ArgAction::Append)]
|
| |
#[arg(long)]
|
| |
edit: bool,
|
| |
},
|
| - |
/// Lists all revisions to the identity document
|
| + |
/// Lists all proposed revisions to the identity document
|
| |
#[clap(alias("l"))]
|
| |
List,
|
| - |
/// Show a specific revision of the identity documen
|
| + |
/// Show a specific identity proposal
|
| |
#[clap(alias("s"))]
|
| |
Show {
|
| - |
/// REV of the revision to show
|
| + |
/// Proposed revision to show
|
| |
#[arg(value_name = "REV")]
|
| |
revision: Rev,
|
| |
},
|
| - |
/// Redact an revision
|
| + |
/// Redact a revision
|
| |
#[clap(alias("d"))]
|
| |
Redact {
|
| - |
/// REV of the revision to redact
|
| + |
/// Proposed revision to redact
|
| |
#[arg(value_name = "REV")]
|
| |
revision: Rev,
|
| |
},
|