diff options
author | xengineering <me@xengineering.eu> | 2024-03-03 17:01:30 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-03 17:01:30 +0100 |
commit | 439f49d4afb1f2bfc9a7aaf63bac7c560486c93c (patch) | |
tree | 5ba796300aba9a6879b8cc9729fa46f29019abd5 /controller | |
parent | 6a4f1aee179a25b62b02deffd0ad97914cbcca87 (diff) | |
download | ceres-439f49d4afb1f2bfc9a7aaf63bac7c560486c93c.tar ceres-439f49d4afb1f2bfc9a7aaf63bac7c560486c93c.tar.zst ceres-439f49d4afb1f2bfc9a7aaf63bac7c560486c93c.zip |
controller: Provide recipe create via HTTP
Diffstat (limited to 'controller')
-rw-r--r-- | controller/recipe.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/controller/recipe.go b/controller/recipe.go index e58092a..a2e5ab6 100644 --- a/controller/recipe.go +++ b/controller/recipe.go @@ -10,6 +10,18 @@ import ( "github.com/gorilla/mux" ) +func RecipeCreate(w http.ResponseWriter, r *http.Request) { + recipe := model.Recipe{} + + err := recipe.Create() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + http.Redirect(w, r, "/recipe/" + recipe.Id, http.StatusSeeOther) +} + func RecipeUpdate(w http.ResponseWriter, r *http.Request) { buf, err := io.ReadAll(r.Body) if err != nil { |