From 87ae71413e47ef34da57bc1e0b8dddbf84b0c66a Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 4 Apr 2024 14:54:21 +0200 Subject: model: Add per-step ingredients --- model/recipe.go | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'model/recipe.go') diff --git a/model/recipe.go b/model/recipe.go index d8c0f2f..59a4c4a 100644 --- a/model/recipe.go +++ b/model/recipe.go @@ -254,9 +254,16 @@ func RecipeTestData() []Recipe { Created: "", LastChanged: "", Steps: []Step{ - {Text: "Stir the dough"}, - {Text: "Heat up pan"}, - {Text: "Make pancakes!"}, + { + Text: "Stir the dough", + Ingredients: []Ingredient{ + {Amount: "4", Unit: "pieces", Type: "egg"}, + {Amount: "800", Unit: "g", Type: "special stuff"}, + {Amount: "0.5", Unit: "l", Type: "milk"}, + }, + }, + {Text: "Heat up pan", Ingredients: []Ingredient{}}, + {Text: "Make pancakes!", Ingredients: []Ingredient{}}, }, }, { -- cgit v1.2.3-70-g09d2