From 149e6fc396c1e3db47a965202875a9f7357aac45 Mon Sep 17 00:00:00 2001 From: Felix Schneider Date: Mon, 9 Jun 2025 23:10:37 +0200 Subject: [PATCH] Update mealie/routes/households/controller_group_recipe_actions.py Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> --- mealie/routes/households/controller_group_recipe_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mealie/routes/households/controller_group_recipe_actions.py b/mealie/routes/households/controller_group_recipe_actions.py index 04dff68be..ab210cd18 100644 --- a/mealie/routes/households/controller_group_recipe_actions.py +++ b/mealie/routes/households/controller_group_recipe_actions.py @@ -69,7 +69,7 @@ class GroupRecipeActionController(BaseUserController): @router.post("/{item_id}/trigger/{recipe_slug}", status_code=202) def trigger_action( - self, item_id: UUID4, recipe_slug: str, bg_tasks: BackgroundTasks, scaled_amount: float = Body(..., embed=True) + self, item_id: UUID4, recipe_slug: str, bg_tasks: BackgroundTasks, scaled_amount: float = Body(1, embed=True) ) -> None: recipe_action = self.repos.group_recipe_actions.get_one(item_id) if not recipe_action: