Remove need for PUT in rekey. We've decided that POST and PUT are to

stay as synonyms for writes, so there's no reason to limit it for this
operation.
This commit is contained in:
Jeff Mitchell 2016-01-14 16:52:34 -05:00
parent 6d655d75fe
commit 386aa408b7
1 changed files with 0 additions and 5 deletions

View File

@ -114,11 +114,6 @@ func handleSysRekeyInitDelete(core *vault.Core, w http.ResponseWriter, r *http.R
func handleSysRekeyUpdate(core *vault.Core) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != "PUT" {
respondError(w, http.StatusMethodNotAllowed, nil)
return
}
// Parse the request
var req RekeyUpdateRequest
if err := parseRequest(r, &req); err != nil {