Added additional name filed to article.

This commit is contained in:
2026-02-25 15:49:42 +01:00
parent ba5ebc3524
commit 75a178cbf4
7 changed files with 46 additions and 5 deletions
+4 -1
View File
@@ -119,6 +119,7 @@ async fn get_article(
allergens_text: None,
bio_info: None,
topm_id: None,
additional_name: None,
};
(StatusCode::INTERNAL_SERVER_ERROR, Json(article))
@@ -152,6 +153,7 @@ async fn create_article(
allergens_text: None,
bio_info: None,
topm_id: None,
additional_name: None,
};
(StatusCode::INTERNAL_SERVER_ERROR, Json(article))
@@ -186,7 +188,8 @@ async fn update_article_route(
bio_origin: None,
allergens_text: None,
bio_info: None,
topm_id: None
topm_id: None,
additional_name: None,
};
(StatusCode::INTERNAL_SERVER_ERROR, Json(article))