diff options
Diffstat (limited to 'controller/recipe.go')
-rw-r--r-- | controller/recipe.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/controller/recipe.go b/controller/recipe.go index 6acb062..09f65a7 100644 --- a/controller/recipe.go +++ b/controller/recipe.go @@ -2,8 +2,10 @@ package controller import ( "encoding/json" + "fmt" "io" "net/http" + "time" "xengineering.eu/ceres/model" @@ -13,7 +15,7 @@ import ( func RecipeCreate(w http.ResponseWriter, r *http.Request) { recipe := model.Recipe{} recipe.Title = "recipe without title" - recipe.Touch() + recipe.LastChanged = fmt.Sprint(time.Now().Unix()) recipe.Created = recipe.LastChanged err := recipe.Create() @@ -22,7 +24,7 @@ func RecipeCreate(w http.ResponseWriter, r *http.Request) { return } - http.Redirect(w, r, "/recipe/" + recipe.Id + "?view=recipe-edit", http.StatusSeeOther) + http.Redirect(w, r, "/recipe/"+recipe.Id+"?view=recipe-edit", http.StatusSeeOther) } func RecipeUpdate(w http.ResponseWriter, r *http.Request) { @@ -44,7 +46,7 @@ func RecipeUpdate(w http.ResponseWriter, r *http.Request) { return } - recipe.Touch() + recipe.LastChanged = fmt.Sprint(time.Now().Unix()) err = recipe.Update() if err != nil { @@ -52,7 +54,7 @@ func RecipeUpdate(w http.ResponseWriter, r *http.Request) { return } - http.Redirect(w, r, "/recipe/" + recipe.Id, http.StatusSeeOther) + http.Redirect(w, r, "/recipe/"+recipe.Id, http.StatusSeeOther) } func RecipeDelete(w http.ResponseWriter, r *http.Request) { |