summaryrefslogtreecommitdiff
path: root/internal/server/router.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/server/router.go')
-rw-r--r--internal/server/router.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/server/router.go b/internal/server/router.go
index 726f8b8..75cf4f9 100644
--- a/internal/server/router.go
+++ b/internal/server/router.go
@@ -22,6 +22,7 @@ func (srv *server) ListenToRequests() {
mux.HandleFunc("GET /ping", h.Ping)
mux.HandleFunc("GET /", h.MainPage)
mux.HandleFunc("POST /", h.HandleForm)
+ mux.HandleFunc("POST /done", h.HandleDoneAction)
// ====== elements ======
mux.HandleFunc("GET /showform", h.ServeShowForm)