Added topm id and row number and ui changes.

This commit is contained in:
2026-02-07 19:08:13 +01:00
parent 05b073812c
commit 088734f237
11 changed files with 176 additions and 74 deletions
+5
View File
@@ -118,6 +118,7 @@ async fn get_article(
bio_origin: None,
allergens_text: None,
bio_info: None,
topm_id: None,
};
(StatusCode::INTERNAL_SERVER_ERROR, Json(article))
@@ -150,6 +151,7 @@ async fn create_article(
bio_origin: None,
allergens_text: None,
bio_info: None,
topm_id: None,
};
(StatusCode::INTERNAL_SERVER_ERROR, Json(article))
@@ -184,6 +186,7 @@ async fn update_article_route(
bio_origin: None,
allergens_text: None,
bio_info: None,
topm_id: None
};
(StatusCode::INTERNAL_SERVER_ERROR, Json(article))
@@ -234,6 +237,7 @@ async fn add_variant(
unit: Unit::G,
label: None,
variant_description: None,
topm_row: None,
};
(StatusCode::INTERNAL_SERVER_ERROR, Json(variant))
@@ -265,6 +269,7 @@ async fn update_variant_route(
unit: Unit::G,
label: None,
variant_description: None,
topm_row: None,
};
(StatusCode::INTERNAL_SERVER_ERROR, Json(variant))