We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I needed to change the below lines to make almost all examples pass:
https://github.com/vicentemundim/mongoid_query_string_interface/blob/master/spec/mongoid/query_string_interface_spec.rb#L21
def self.default_sorting_options [:created_at.desc, :updated_at.asc] end
to
def self.default_sorting_options ['created_at.desc', 'updated_at.asc'] end
Examples using queries with dates are failing too: https://github.com/vicentemundim/mongoid_query_string_interface/blob/master/spec/mongoid/query_string_interface_spec.rb#L213
Thanks in advance!
The text was updated successfully, but these errors were encountered:
I've just pushed some changes that made most of the specs pass, there are still 2 specs failing, I'll check them later.
Sorry, something went wrong.
Thanks!
No branches or pull requests
I needed to change the below lines to make almost all examples pass:
https://github.com/vicentemundim/mongoid_query_string_interface/blob/master/spec/mongoid/query_string_interface_spec.rb#L21
to
Examples using queries with dates are failing too:
https://github.com/vicentemundim/mongoid_query_string_interface/blob/master/spec/mongoid/query_string_interface_spec.rb#L213
Thanks in advance!
The text was updated successfully, but these errors were encountered: