fix(server/client): rename document_id to id in DocumentUploadResponse, again

This commit is contained in:
perf3ct 2025-07-09 02:46:39 +00:00
parent 70f75a00ba
commit aadd97940f
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ impl DocumentDeletionTestClient {
return Ok(serde_json::json!({
"success": true,
"message": "Document deleted",
"document_id": document_id,
"id": document_id,
"filename": "deleted"
}));
}