From 733bd780d5256be12eb2e018eb7f29c734d33e96 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 13 Aug 2025 11:49:59 -0300 Subject: [PATCH] fix: remove invalid body parameter from delete item API documentation Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) --- src/modes/server/api/item.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modes/server/api/item.rs b/src/modes/server/api/item.rs index d7da66f..b7d97c0 100644 --- a/src/modes/server/api/item.rs +++ b/src/modes/server/api/item.rs @@ -163,7 +163,7 @@ pub async fn handle_post_item( delete, path = "/api/item/{item_id}", responses( - (status = 200, description = "Successfully deleted item", body = ApiResponse<()>), + (status = 200, description = "Successfully deleted item"), (status = 401, description = "Unauthorized"), (status = 404, description = "Item not found"), (status = 500, description = "Internal server error")