summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-01-08 19:36:01 +0100
committerxengineering <me@xengineering.eu>2024-01-08 19:36:01 +0100
commitae1a31f226de5701683231afaabf0f66503ca17d (patch)
treeb11a8b8c91ac41ee7ffb783de23b5c38dd9e2e6a /main.go
parent43e7bb10eaade56a9444ec089aa3102218231868 (diff)
downloadceres-ae1a31f226de5701683231afaabf0f66503ca17d.tar
ceres-ae1a31f226de5701683231afaabf0f66503ca17d.tar.zst
ceres-ae1a31f226de5701683231afaabf0f66503ca17d.zip
Implement recipe editing
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.go b/main.go
index e7acac1..a546d86 100644
--- a/main.go
+++ b/main.go
@@ -9,6 +9,7 @@ import (
"os/signal"
"syscall"
+ "xengineering.eu/ceres/controller"
"xengineering.eu/ceres/model"
"xengineering.eu/ceres/view"
@@ -45,6 +46,8 @@ func startServer(addr string) *http.Server {
Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static))))
r.HandleFunc("/recipes/{id}", view.HandlerHTML(&model.Recipe{})).Methods(`GET`)
+ r.HandleFunc("/recipes/{id}/edit", view.RecipeEditHandler).Methods(`GET`)
+ r.HandleFunc("/recipes/{id}", controller.RecipePost).Methods(`POST`)
r.HandleFunc("/", view.HandlerHTML(&model.Index{})).Methods(`GET`)