X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b9c85c269726faad3c2613b37f01683c8b59f5c6..0b05f4701672d7107cb45d9fb4de13819f7df863:/app/controllers/api/users_controller.rb?ds=inline diff --git a/app/controllers/api/users_controller.rb b/app/controllers/api/users_controller.rb index a921b6db7..ab48a5189 100644 --- a/app/controllers/api/users_controller.rb +++ b/app/controllers/api/users_controller.rb @@ -19,7 +19,7 @@ module Api raise OSM::APIBadUserInput, "No users were given to search for" if ids.empty? - @users = User.visible.where(:id => ids) + @users = User.visible.where(:id => ids).in_order_of(:id, ids) # Render the result respond_to do |format|