summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-03-03 14:09:56 +0100
committerxengineering <me@xengineering.eu>2024-03-03 14:09:56 +0100
commit7cecddd5ecd95c8d559208f9292a3590f8c4cb37 (patch)
treed8e3340025425f489c9eac5a51d2c5b3694fbfee /main.go
parent78116f571ad4801bd10c51077b50ec87f1f68be7 (diff)
downloadceres-7cecddd5ecd95c8d559208f9292a3590f8c4cb37.tar
ceres-7cecddd5ecd95c8d559208f9292a3590f8c4cb37.tar.zst
ceres-7cecddd5ecd95c8d559208f9292a3590f8c4cb37.zip
controller: Provide recipe deletion via HTTP
Diffstat (limited to 'main.go')
-rw-r--r--main.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/main.go b/main.go
index bcc5aa7..aa04065 100644
--- a/main.go
+++ b/main.go
@@ -44,10 +44,15 @@ func startServer(addr string) *http.Server {
r.PathPrefix("/static/").
Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static))))
+
r.HandleFunc("/recipes", view.Recipes).Methods(`GET`)
+
r.HandleFunc("/recipe/{id:[0-9]+}", view.Recipe).Methods(`GET`)
- r.HandleFunc("/recipe", controller.Recipe).Methods(`POST`)
+ r.HandleFunc("/recipe", controller.RecipeUpdate).Methods(`POST`)
+ r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeDelete).Methods(`DELETE`)
+
r.HandleFunc("/favicon.ico", view.Favicon).Methods(`GET`)
+
r.HandleFunc("/", view.Index).Methods(`GET`)
muxer := http.NewServeMux()