From fa4c7e7af50817bc895f56f3fa25b50b8444407d Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 3 Mar 2024 17:23:09 +0100 Subject: view: Add recipe create --- controller/recipe.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'controller') diff --git a/controller/recipe.go b/controller/recipe.go index a2e5ab6..818a077 100644 --- a/controller/recipe.go +++ b/controller/recipe.go @@ -12,6 +12,7 @@ import ( func RecipeCreate(w http.ResponseWriter, r *http.Request) { recipe := model.Recipe{} + recipe.Title = "recipe without title" err := recipe.Create() if err != nil { @@ -19,7 +20,7 @@ func RecipeCreate(w http.ResponseWriter, r *http.Request) { return } - http.Redirect(w, r, "/recipe/" + recipe.Id, http.StatusSeeOther) + http.Redirect(w, r, "/recipe/" + recipe.Id + "?view=recipe-edit", http.StatusSeeOther) } func RecipeUpdate(w http.ResponseWriter, r *http.Request) { -- cgit v1.2.3-70-g09d2