Skip to content
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 support for :query_params to set query parameters for non-GET requests #287

Merged
merged 2 commits into from
May 2, 2022

Commits on May 2, 2022

  1. Add support for :query_params to set query parameters for non-GET req…

    …uests
    
    This allows you to set both body parameters (:params) and query
    parameters (:query_params) for non-GET requests.
    
    For consistency, GET requests also support :query_params.  If both
    :params and :query_params are provided, :params will append to the
    existing query before :query_params.
    
    Implements rack#150.
    jeremyevans committed May 2, 2022
    Configuration menu
    Copy the full SHA
    c96a606 View commit details
    Browse the repository at this point in the history
  2. Disable some more rubocop rules

    Rubocop will probably be ripped out completely in the future, but
    for right now, just disable the rules that are complaining.
    jeremyevans committed May 2, 2022
    Configuration menu
    Copy the full SHA
    11a73b4 View commit details
    Browse the repository at this point in the history