From 88107366bce6b7f7c788171a18c40ad102904ff4 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 1 Apr 2023 16:03:49 +0200 Subject: Implement recipe deletion --- mux.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'mux.go') diff --git a/mux.go b/mux.go index 9d9d09a..9fb0dad 100644 --- a/mux.go +++ b/mux.go @@ -33,6 +33,17 @@ func recipeEditMux(w http.ResponseWriter, r *http.Request) { } } +func recipeConfirmDeletionMux(w http.ResponseWriter, r *http.Request) { + switch r.Method { + case "GET": + recipeConfirmDeletionGet(w, r) + case "POST": + recipeConfirmDeletionPost(w, r) + default: + http.Error(w, "Bad Request", 400) + } +} + func addRecipesMux(w http.ResponseWriter, r *http.Request) { switch r.Method { case "GET": -- cgit v1.2.3-70-g09d2