[openstreetmap-website] API: query changesets by ids (#608)
Tom Hughes
notifications at github.com
Wed Dec 4 20:25:35 UTC 2013
> @@ -414,6 +415,18 @@ def conditions_closed(changesets, closed)
> end
>
> ##
> + # query changesets by a list of ids
> + # (either specified as array or comma-separated string)
> + def conditions_ids(changesets, ids)
> + if ids.nil? or ids.empty?
> + return changesets
> + else
> + ids = ids.split(',').collect { |n| n.to_i } if ids.kind_of?(String)
What's the logic behind allowing he parameter to be an array? We don't allow that for the other objects, and there is no way to actually pass anything other than a string to it when calling it via HTTP is there?
---
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/608/files#r8108829
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstreetmap.org/pipermail/rails-dev/attachments/20131204/75f908c2/attachment.html>
More information about the rails-dev
mailing list