From 71175652c2722d387313d3c5b628bed845135f02 Mon Sep 17 00:00:00 2001 From: Jackie Elliott Date: Mon, 11 Jun 2018 14:04:49 -0700 Subject: [PATCH] Changed GET to POST for event/listen path --- actions/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/app.go b/actions/app.go index 0382f1b..97dd315 100644 --- a/actions/app.go +++ b/actions/app.go @@ -50,7 +50,7 @@ func App() *buffalo.App { app.GET("/", HomeHandler) - app.GET("/event/listen", EventListen) + app.POST("/event/listen", EventListen) } return app