diff options
author | xengineering <me@xengineering.eu> | 2024-01-08 19:36:01 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-08 19:36:01 +0100 |
commit | ae1a31f226de5701683231afaabf0f66503ca17d (patch) | |
tree | b11a8b8c91ac41ee7ffb783de23b5c38dd9e2e6a /main.go | |
parent | 43e7bb10eaade56a9444ec089aa3102218231868 (diff) | |
download | ceres-ae1a31f226de5701683231afaabf0f66503ca17d.tar ceres-ae1a31f226de5701683231afaabf0f66503ca17d.tar.zst ceres-ae1a31f226de5701683231afaabf0f66503ca17d.zip |
Implement recipe editing
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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`) |