summaryrefslogtreecommitdiff
path: root/internal/handlers/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/handlers/main.go')
-rw-r--r--internal/handlers/main.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/internal/handlers/main.go b/internal/handlers/main.go
index 38da212..dc8ba2b 100644
--- a/internal/handlers/main.go
+++ b/internal/handlers/main.go
@@ -94,3 +94,14 @@ func (h *Handlers) HandleForm(w http.ResponseWriter, r *http.Request) {
// tmpl.Execute(w, us)
tmpl.ExecuteTemplate(w, "main", us)
}
+
+func (h *Handlers) HandleDoneAction(w http.ResponseWriter, r *http.Request) {
+ r.ParseForm()
+ h.log.Info("got postform request", "payload", r.PostForm)
+ actionName := r.PostFormValue("name")
+ h.log.Info("got postform request", "name", actionName)
+ // change counter of user score
+ // get action by name
+ tmpl := template.Must(template.ParseGlob("components/*.html"))
+ tmpl.ExecuteTemplate(w, "main", nil)
+}