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

Integer-index encode all arrays #674

Merged
merged 1 commit into from
Aug 15, 2018
Merged

Commits on Aug 14, 2018

  1. Integer-index encode all arrays

    Changes all arrays from classic Rack encoding:
    
    ``` sh
    arr[]=...&arr[]=...&arr[]=...
    ```
    
    To integer-indexed encoding:
    
    ``` sh
    arr[0]=...&arr[1]=...&arr[2]=...
    ```
    
    We think that this should be tractable now that we've fully converted
    all endpoints over to the new AbstractAPIMethod infrastructure on the
    backend (although we should do a little more testing to make sure that
    all endpoints still work).
    
    As part of the conversion, we also remove any places that we were "spot
    encoding" to get required integer-indexed syntax. This should now all be
    built in.
    brandur committed Aug 14, 2018
    Configuration menu
    Copy the full SHA
    c1ff8bd View commit details
    Browse the repository at this point in the history