<p>In app/controllers/changeset_controller.rb:</p>
<pre style='color:#555'>> @@ -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)
</pre>
<p>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?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br>Reply to this email directly or <a href='https://github.com/openstreetmap/openstreetmap-website/pull/608/files#r8108829'>view it on GitHub</a>.<img src='https://github.com/notifications/beacon/uTRSc6ihLa7Shf84BpiOpnJ39SMQ-MYrsV_pUFUvDlYjnlKEKoyIhK3KPGklSsuE.gif' height='1' width='1'></p>