diff options
Diffstat (limited to 'controller/recipe.go')
-rw-r--r-- | controller/recipe.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/controller/recipe.go b/controller/recipe.go index 818a077..6acb062 100644 --- a/controller/recipe.go +++ b/controller/recipe.go @@ -13,6 +13,8 @@ import ( func RecipeCreate(w http.ResponseWriter, r *http.Request) { recipe := model.Recipe{} recipe.Title = "recipe without title" + recipe.Touch() + recipe.Created = recipe.LastChanged err := recipe.Create() if err != nil { @@ -42,6 +44,8 @@ func RecipeUpdate(w http.ResponseWriter, r *http.Request) { return } + recipe.Touch() + err = recipe.Update() if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) |