Fix password change status code

This commit is contained in:
Matthew Dillon 2015-11-17 10:32:29 -07:00
parent 8e9d6380e7
commit 74a479359c

View file

@ -283,5 +283,7 @@ func HandleUserPasswordChange(w http.ResponseWriter, r *http.Request) *types.App
return newJSONError(err, http.StatusInternalServerError)
}
w.WriteHeader(http.StatusNoContent)
return nil
}