Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW: more copy on show and clear commands
Fintan Halpenny committed 6 months ago
commit e6eb85b0b608d9710bb3508560f35b4e70bc1f5c
parent 076b32aca595b690dde828cc3a5686f42839c63a
1 file changed +9 -1
modified crates/radicle-cli/src/commands/inbox/args.rs
@@ -44,14 +44,22 @@ pub(crate) enum Command {
    /// List all items in your inbox
    List(ListArgs),
    /// Show a notification
+
    ///
+
    /// The NOTIFICATION_ID can be found when listing the items in your inbox
+
    ///
+
    /// Showing a notification will mark that notification as read
    Show {
        /// The notification to display
        #[arg(value_name = "NOTIFICATION_ID")]
        id: NotificationId,
    },
    /// Clear notifications
+
    ///
+
    /// This will clear all the specified notifications
+
    ///
+
    /// If no notifications are specified then all notifications are cleared
    Clear {
-
        /// A list of notification to clear
+
        /// A list of notifications to clear
        #[arg(value_name = "NOTIFICATION_ID")]
        ids: Option<Vec<NotificationId>>,
    },