Fixed result form stuff

This commit is contained in:
Gregory Ballantine
2024-05-29 11:43:17 -04:00
parent 0525838f4b
commit 7282d0a4b6
3 changed files with 8 additions and 8 deletions

View File

@ -56,6 +56,6 @@ func RegisterRoutes(f *flamego.Flame) {
// result routes
f.Group("/result", func() {
f.Post("/add", routes.ResultPostCreate)
f.Post("/add", binding.Form(forms.ResultForm{}), routes.ResultPostCreate)
})
}