summaryrefslogtreecommitdiff
path: root/mux.go
diff options
context:
space:
mode:
Diffstat (limited to 'mux.go')
-rw-r--r--mux.go11
1 files changed, 11 insertions, 0 deletions
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":