Add missing GET for /login (#258)

main
Erik Johnston 2017-09-22 16:13:43 +01:00 committed by Mark Haines
parent 8dabca0f07
commit 6bec139544
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ func Setup(
common.MakeAPI("login", func(req *http.Request) util.JSONResponse {
return readers.Login(req, accountDB, deviceDB, cfg)
}),
).Methods("POST", "OPTIONS")
).Methods("GET", "POST", "OPTIONS")
r0mux.Handle("/pushrules/",
common.MakeAPI("push_rules", func(req *http.Request) util.JSONResponse {