summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-03-03 16:56:42 +0100
committerxengineering <me@xengineering.eu>2024-03-03 16:56:42 +0100
commit6a4f1aee179a25b62b02deffd0ad97914cbcca87 (patch)
treed20b1a8aad1cba2bd93967a5423683d2b6d1513e /main.go
parentbee8b4cc59fd24fc1b924a6160b8eaa221405aeb (diff)
downloadceres-6a4f1aee179a25b62b02deffd0ad97914cbcca87.tar
ceres-6a4f1aee179a25b62b02deffd0ad97914cbcca87.tar.zst
ceres-6a4f1aee179a25b62b02deffd0ad97914cbcca87.zip
Add ID to URL in recipe updates
This makes the update URL more consistent with the other ones. A check ensures consistency of the URL and JSON ID values.
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index ec061c2..1660088 100644
--- a/main.go
+++ b/main.go
@@ -48,7 +48,7 @@ func startServer(addr string) *http.Server {
r.HandleFunc("/recipes", view.RecipesRead).Methods(`GET`)
r.HandleFunc("/recipe/{id:[0-9]+}", view.RecipeRead).Methods(`GET`)
- r.HandleFunc("/recipe", controller.RecipeUpdate).Methods(`POST`)
+ r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeUpdate).Methods(`POST`)
r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeDelete).Methods(`DELETE`)
r.HandleFunc("/favicon.ico", view.FaviconRead).Methods(`GET`)