preview-stack

This commit is contained in:
2025-10-11 11:09:38 +02:00
parent 30f3fe015b
commit 41a9e8f76c
13 changed files with 2088 additions and 287 deletions
+6
View File
@@ -31,6 +31,12 @@ pub fn create_router(state: AppState) -> Router<()> {
get(documents::list_documents).post(documents::upload_document),
)
.route("/reanalyze", post(documents::reanalyze_all_documents))
.route("/bulk/move", post(documents::bulk_move_documents))
.route("/bulk/tags", post(documents::bulk_update_tags))
.route(
"/bulk/reanalyze",
post(documents::reanalyze_selected_documents),
)
.route(
"/:id",
get(documents::get_document).delete(documents::delete_document),