From 6bec1395447dad3ecbcff2bcc52379ac1e04e5c8 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Fri, 22 Sep 2017 16:13:43 +0100 Subject: [PATCH] Add missing GET for /login (#258) --- src/github.com/matrix-org/dendrite/clientapi/routing/routing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.com/matrix-org/dendrite/clientapi/routing/routing.go b/src/github.com/matrix-org/dendrite/clientapi/routing/routing.go index 607b8ef4..e4b7eb80 100644 --- a/src/github.com/matrix-org/dendrite/clientapi/routing/routing.go +++ b/src/github.com/matrix-org/dendrite/clientapi/routing/routing.go @@ -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 {