feat: ingestion task streaming feedback

This commit is contained in:
Per Stark
2025-05-13 21:45:57 +02:00
parent 850878d5c3
commit d504903db3
13 changed files with 271 additions and 88 deletions
+2 -1
View File
@@ -3,7 +3,7 @@ mod handlers;
use axum::{extract::FromRef, routing::get, Router};
use handlers::{
delete_text_content, patch_text_content, show_content_page, show_content_read_modal,
show_text_content_edit_form,
show_recent_content, show_text_content_edit_form,
};
use crate::html_state::HtmlState;
@@ -15,6 +15,7 @@ where
{
Router::new()
.route("/content", get(show_content_page))
.route("/content/recent", get(show_recent_content))
.route("/content/{id}/read", get(show_content_read_modal))
.route(
"/content/{id}",