-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add forms in body_format and PUT in VALID_VERBS #28
base: main
Are you sure you want to change the base?
Conversation
Adding support for a body_format value of 'form' to support content-type: application/x-www-form-urlencoded until the body_format config is removed in favor of content_type.
ELASTIC_STACK_VERSION=8.0.0-SNAPSHOT test environment appears to be broken |
Part of a previous request: add PUT to the VALID_VERBS list.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added PUT to the list of VALID_VERBS as well
Updated documentation to reflect addition of 'PUT' verb and 'form' body_format
Thanks Mike, this is looking good. Any chance on writing a naive test for the change? |
PUT request shipped at #34, there's more in this PR however it seems stale |
Unfortunately, I'm no good at writing tests. FWIW, I've got my fork running safely in an enterprise environment with no issues :-) |
Adding support for a body_format value of 'form' to support content-type: application/x-www-form-urlencoded until the body_format config is removed in favor of content_type.