mirror of
https://github.com/perstarkse/minne.git
synced 2026-04-27 03:08:41 +02:00
refactor: implemented state machines for retrieval pipeline, improved tracing
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user