feat: Remove "Is Food" and "Disable Amounts" Flags (#5684)

Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
Michael Genson
2025-07-31 10:36:24 -05:00
committed by GitHub
parent efc0d31724
commit 245ca5fe3b
49 changed files with 173 additions and 364 deletions

View File

@@ -37,12 +37,12 @@ def recipe_ingredient_only(unique_user: TestUser):
group_id=unique_user.group_id,
name=random_string(10),
recipe_ingredient=[
RecipeIngredient(note="Ingredient 1"),
RecipeIngredient(note="Ingredient 2"),
RecipeIngredient(note="Ingredient 3"),
RecipeIngredient(note="Ingredient 4"),
RecipeIngredient(note="Ingredient 5"),
RecipeIngredient(note="Ingredient 6"),
RecipeIngredient(quantity=1, note="Ingredient 1"),
RecipeIngredient(quantity=1, note="Ingredient 2"),
RecipeIngredient(quantity=1, note="Ingredient 3"),
RecipeIngredient(quantity=1, note="Ingredient 4"),
RecipeIngredient(quantity=1, note="Ingredient 5"),
RecipeIngredient(quantity=1, note="Ingredient 6"),
],
)