diff options
author | xengineering <me@xengineering.eu> | 2024-04-04 14:54:21 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-12 20:52:25 +0200 |
commit | 87ae71413e47ef34da57bc1e0b8dddbf84b0c66a (patch) | |
tree | f8711576d7098d21e48eafd9df3ab6f3ed679b88 /model/recipe.go | |
parent | fec2fea87615e6ee3a6e73f7f98e021eee1b7098 (diff) | |
download | ceres-87ae71413e47ef34da57bc1e0b8dddbf84b0c66a.tar ceres-87ae71413e47ef34da57bc1e0b8dddbf84b0c66a.tar.zst ceres-87ae71413e47ef34da57bc1e0b8dddbf84b0c66a.zip |
model: Add per-step ingredients
Diffstat (limited to 'model/recipe.go')
-rw-r--r-- | model/recipe.go | 13 |
1 files changed, 10 insertions, 3 deletions
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{}}, }, }, { |