diff options
| author | soryu <soryu@soryu.co> | 2026-02-09 02:19:38 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-02-09 02:19:38 +0000 |
| commit | 9c92d9235a0d1258fff9f7e625b0463c4952c45f (patch) | |
| tree | 408bb739c7e58e282d762631c7a812e4c96fd6e8 /makima/src/server/mod.rs | |
| parent | 9eb28de59b3b3815fc0eb15b37efcb07d51b8e96 (diff) | |
| download | soryu-9c92d9235a0d1258fff9f7e625b0463c4952c45f.tar.gz soryu-9c92d9235a0d1258fff9f7e625b0463c4952c45f.zip | |
Resume contracts from patches
Diffstat (limited to 'makima/src/server/mod.rs')
| -rw-r--r-- | makima/src/server/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/makima/src/server/mod.rs b/makima/src/server/mod.rs index 9e1ee50..7a1391b 100644 --- a/makima/src/server/mod.rs +++ b/makima/src/server/mod.rs @@ -84,6 +84,7 @@ pub fn make_router(state: SharedState) -> Router { .route("/mesh/tasks/{id}/clone", post(mesh::clone_worktree)) .route("/mesh/tasks/{id}/worktree-info", get(mesh::get_worktree_info)) .route("/mesh/tasks/{id}/patches", get(mesh::list_task_patches)) + .route("/mesh/tasks/{id}/patch-data", get(mesh::get_task_patch_data)) .route("/mesh/tasks/{id}/check-target", post(mesh::check_target_exists)) .route("/mesh/tasks/{id}/reassign", post(mesh::reassign_task)) .route("/mesh/tasks/{id}/continue", post(mesh::continue_task)) |
