Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
cob: Add `patch::Action::EditRevision`
Sebastian Martinez committed 3 years ago
commit c809bd5b420eab4b31d5e28a3a5e71e22c70bf75
parent 8826ec4f9cafdaf190dae19cc642f5e5c4b9ed51
1 file changed +6 -0
modified radicle-httpd/src/api/v1/projects.rs
@@ -626,6 +626,12 @@ async fn patch_update_handler(
        } => {
            patch.edit(title, description, target, &signer)?;
        }
+
        patch::Action::EditRevision {
+
            revision,
+
            description,
+
        } => {
+
            patch.edit_revision(revision, description, &signer)?;
+
        }
        patch::Action::Tag { add, remove } => {
            patch.tag(add, remove, &signer)?;
        }