diff --git a/http/sys_auth.go b/http/sys_auth.go index b69c66a048..8958790fad 100644 --- a/http/sys_auth.go +++ b/http/sys_auth.go @@ -11,6 +11,8 @@ import ( func handleSysAuth(core *vault.Core) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { switch r.Method { + case "GET": + handleSysListAuth(core).ServeHTTP(w, r) case "POST": fallthrough case "DELETE":