Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
cob: Add missing `verdict` field to `review.edit`
cloudhead committed 2 years ago
commit 53ccce34b13928abdce22204710877b7e5091187
parent 4947ac48a30f9e3b1194646fc111a2443d8b6b8a
1 file changed +6 -2
modified radicle-httpd/src/api/v1/projects.rs
@@ -687,8 +687,12 @@ async fn patch_update_handler(
        } => {
            patch.edit_revision(revision, description, &signer)?;
        }
-
        patch::Action::ReviewEdit { review, summary } => {
-
            patch.edit_review(review, summary, &signer)?;
+
        patch::Action::ReviewEdit {
+
            review,
+
            summary,
+
            verdict,
+
        } => {
+
            patch.edit_review(review, summary, verdict, &signer)?;
        }
        patch::Action::ReviewComment {
            review,