enable POST to logout [CI SKIP]

This commit is contained in:
Brad Rydzewski 2019-09-18 13:35:57 -07:00
parent 6283b20972
commit ab81e18705

View file

@ -119,6 +119,7 @@ func (s Server) Handler() http.Handler {
),
)
r.Get("/logout", HandleLogout())
r.Post("/logout", HandleLogout())
h2 := http.FileServer(landingpage.New())
h := http.FileServer(dist.New())