diff --git a/radicle-httpd/src/api/json.rs b/radicle-httpd/src/api/json.rs index 6759c5f8..ee2bfb01 100644 --- a/radicle-httpd/src/api/json.rs +++ b/radicle-httpd/src/api/json.rs @@ -46,7 +46,6 @@ pub(crate) fn tree(tree: &Tree, path: &str, stats: &Stats) -> Value { json!({ "path": prefix.join(entry.name()), "name": entry.name(), - "lastCommit": Value::Null, "kind": if entry.is_tree() { "tree" } else { "blob" }, }) }) diff --git a/radicle-httpd/src/api/v1/projects.rs b/radicle-httpd/src/api/v1/projects.rs index e12a1f2b..5322fadc 100644 --- a/radicle-httpd/src/api/v1/projects.rs +++ b/radicle-httpd/src/api/v1/projects.rs @@ -717,13 +717,11 @@ mod routes { { "path": "dir1", "name": "dir1", - "lastCommit": null, "kind": "tree" }, { "path": "README", "name": "README", - "lastCommit": null, "kind": "blob" } ], @@ -766,7 +764,6 @@ mod routes { { "path": "dir1/README", "name": "README", - "lastCommit": null, "kind": "blob" } ],