diff options
Diffstat (limited to 'controller/recipe.go')
-rw-r--r-- | controller/recipe.go | 3 |
1 files changed, 2 insertions, 1 deletions
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) { |