From 2704cb76554b02f546bf3f9d2d11be98f2854b7b Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 23 Apr 2024 17:42:57 +0200 Subject: Remove default recipe name To avoid not clickable recipes on the /recipes page a default name used to be inserted on recipe creation. This was not a proper fix for the problem and also was annoying that the user first had to remove the default recipe name. This commit removes this default name. --- controller/recipe.go | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'controller') diff --git a/controller/recipe.go b/controller/recipe.go index 9529b2a..b0a81d9 100644 --- a/controller/recipe.go +++ b/controller/recipe.go @@ -13,19 +13,30 @@ import ( ) func RecipeCreate(w http.ResponseWriter, r *http.Request) { + buf, err := io.ReadAll(r.Body) + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + recipe := model.Recipe{} - recipe.Title = "recipe without title" + err = json.Unmarshal(buf, &recipe) + if err != nil { + http.Error(w, err.Error(), http.StatusBadRequest) + return + } + recipe.LastChanged = fmt.Sprint(time.Now().Unix()) recipe.Created = recipe.LastChanged var obj model.Object = &recipe - err := model.Transaction(obj.Create) + err = model.Transaction(obj.Create) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } - http.Redirect(w, r, "/recipe/"+recipe.Id+"?view=recipe-edit", http.StatusSeeOther) + http.Redirect(w, r, "/recipe/"+recipe.Id, http.StatusSeeOther) } func RecipeUpdate(w http.ResponseWriter, r *http.Request) { -- cgit v1.2.3-70-g09d2