From 632fb9ef7b8e91b14b62d03b8dba33fdfa3c26fa Mon Sep 17 00:00:00 2001 From: Marcel Date: Wed, 6 May 2026 11:26:33 +0200 Subject: [PATCH] =?UTF-8?q?docs(c4):=20fix=203b=20frontend=20=E2=80=94=20c?= =?UTF-8?q?orrect=20docBulkEdit=20endpoint=20to=20/bulk?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DocumentController maps the batch update to PATCH /api/documents/bulk, not /api/documents/batch. Co-Authored-By: Claude Sonnet 4.6 --- docs/architecture/c4-diagrams.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/architecture/c4-diagrams.md b/docs/architecture/c4-diagrams.md index 6467998d..49b2edd5 100644 --- a/docs/architecture/c4-diagrams.md +++ b/docs/architecture/c4-diagrams.md @@ -415,7 +415,7 @@ C4Component Rel(docDetail, backend, "GET /api/documents/{id}, GET /api/documents/{id}/file", "HTTP / JSON + Binary") Rel(docEdit, backend, "PUT /api/documents/{id}", "HTTP / Multipart") Rel(docNew, backend, "GET /api/persons, POST /api/documents", "HTTP / JSON + Multipart") - Rel(docBulkEdit, backend, "GET /api/documents/incomplete, PATCH /api/documents/batch", "HTTP / JSON") + Rel(docBulkEdit, backend, "GET /api/documents/incomplete, PATCH /api/documents/bulk", "HTTP / JSON") Rel(enrichPage, backend, "GET/POST /api/transcription, POST /api/documents/{id}/annotations", "HTTP / JSON") Rel(homePage, typeahead, "Uses for sender/receiver filter", "") Rel(docEdit, typeahead, "Uses for sender/receiver selection", "")