refactor: implemented state machines for retrieval pipeline, improved tracing

This commit is contained in:
Per Stark
2025-10-18 17:43:10 +02:00
parent 21e4ab1f42
commit 83d39afad4
15 changed files with 899 additions and 566 deletions

View File

@@ -29,11 +29,15 @@ pub async fn show_signup_form(
return Ok(TemplateResponse::redirect("/"));
}
if boosted { Ok(TemplateResponse::new_partial(
"auth/signup_form.html",
"body",
(),
)) } else { Ok(TemplateResponse::new_template("auth/signup_form.html", ())) }
if boosted {
Ok(TemplateResponse::new_partial(
"auth/signup_form.html",
"body",
(),
))
} else {
Ok(TemplateResponse::new_template("auth/signup_form.html", ()))
}
}
pub async fn process_signup_and_show_verification(