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

Order by #11

Closed
wants to merge 9 commits into from
Closed

Order by #11

wants to merge 9 commits into from

Commits on Aug 10, 2015

  1. Fix failing admin test.

    jmcarp committed Aug 10, 2015
    Configuration menu
    Copy the full SHA
    188d7fb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    59d3cad View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2015

  1. Add query operators.

    Support less than, greater than, like and other operators, using query
    parameters of the format "field__operator=value". Based on
    jeffknupp/sandman#115.
    jmcarp committed Aug 29, 2015
    Configuration menu
    Copy the full SHA
    6dd763a View commit details
    Browse the repository at this point in the history
  2. Add not equal operator.

    jmcarp committed Aug 29, 2015
    Configuration menu
    Copy the full SHA
    91fad8f View commit details
    Browse the repository at this point in the history
  3. Handle filtering on repeated query parameters.

    For example, `?name=foo&name=bar` translates to `name IN ('foo',
    'bar')`.
    jmcarp committed Aug 29, 2015
    Configuration menu
    Copy the full SHA
    72cd4e2 View commit details
    Browse the repository at this point in the history
  4. Test case insensitive setting.

    jmcarp committed Aug 29, 2015
    Configuration menu
    Copy the full SHA
    3ca05c2 View commit details
    Browse the repository at this point in the history
  5. Allow custom query delimiters.

    jmcarp committed Aug 29, 2015
    Configuration menu
    Copy the full SHA
    f6bc4ca View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ecf5829 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2015

  1. Support ordering by query parameter.

    * Support multi-column sort by repeated `sort` parameters
    * Support descending sort by prepending "-" to values
    jmcarp committed Aug 30, 2015
    Configuration menu
    Copy the full SHA
    3bca1f9 View commit details
    Browse the repository at this point in the history