Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
httpd: Add more revision properties to patch
Sebastian Martinez committed 3 years ago
commit fcea4aeb7d8b18738ebafb762af37e69911221a1
parent da96a82fc1f74168c6bf5f361febbb97f1eee678
2 files changed +19 -3
modified radicle-httpd/src/api/json.rs
@@ -115,6 +115,10 @@ pub(crate) fn patch(id: PatchId, patch: Patch) -> Value {
            json!({
                "id": id,
                "description": rev.description(),
+
                "base": rev.base,
+
                "oid": rev.oid,
+
                "merges": rev.merges().collect::<Vec<_>>(),
+
                "discussions": rev.discussion.comments().collect::<Comments>(),
                "timestamp": rev.timestamp,
                "reviews": rev.reviews().collect::<Vec<_>>(),
            })
modified radicle-httpd/src/api/v1/projects.rs
@@ -1335,6 +1335,10 @@ mod routes {
                    {
                        "id": PATCH_ID,
                        "description": "",
+
                        "base": HEAD_1,
+
                        "oid": HEAD,
+
                        "merges": [],
+
                        "discussions": [],
                        "timestamp": 1671125284,
                        "reviews": [],
                    }
@@ -1363,6 +1367,10 @@ mod routes {
                    {
                        "id": PATCH_ID,
                        "description": "",
+
                        "base": HEAD_1,
+
                        "oid": HEAD,
+
                        "merges": [],
+
                        "discussions": [],
                        "timestamp": 1671125284,
                        "reviews": [],
                    }
@@ -1374,7 +1382,7 @@ mod routes {

    #[tokio::test]
    async fn test_projects_create_patches() {
-
        const CREATED_PATCH_ID: &str = "54505091ff3561466cfbe83e7e23c21cb1bb8a17";
+
        const CREATED_PATCH_ID: &str = "9170195973fb145b327b1f5cd728a6e46b3bb082";

        let tmp = tempfile::tempdir().unwrap();
        let ctx = test::contributor(tmp.path());
@@ -1385,8 +1393,8 @@ mod routes {
        let body = serde_json::to_vec(&json!({
          "title": "Update README",
          "description": "Do some changes to README",
-
          "target": HEAD,
-
          "oid": HEAD_1,
+
          "target": HEAD_1,
+
          "oid": HEAD,
          "tags": [],
        }))
        .unwrap();
@@ -1434,6 +1442,10 @@ mod routes {
                    {
                        "id": CREATED_PATCH_ID,
                        "description": "",
+
                        "base": HEAD_1,
+
                        "oid": HEAD,
+
                        "merges": [],
+
                        "discussions": [],
                        "timestamp": 1671125284,
                        "reviews": [],
                    }