Recipe edit (WIP): forms to edit groups, steps and ingredients

This commit is contained in:
Greg Burri 2024-12-26 01:39:07 +01:00
parent dd05a673d9
commit 07b7ff425e
25 changed files with 881 additions and 203 deletions

View file

@ -1,7 +1,7 @@
use axum::{
body, debug_handler,
extract::{Extension, Request, State},
http::header,
http::{header, StatusCode},
middleware::Next,
response::{IntoResponse, Response, Result},
};
@ -66,5 +66,8 @@ pub async fn home_page(
#[debug_handler]
pub async fn not_found(Extension(user): Extension<Option<model::User>>) -> impl IntoResponse {
MessageTemplate::new_with_user("404: Not found", user)
(
StatusCode::NOT_FOUND,
MessageTemplate::new_with_user("404: Not found", user),
)
}