]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/api/users_controller.rb
Restore ordering of results from the users#index API call
[rails.git] / app / controllers / api / users_controller.rb
index 888753fe9f2a92d3230c83382c2c375654f40b85..ab48a518979427aba4e676b08238c025c838fda7 100644 (file)
@@ -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).order(:id)
+      @users = User.visible.where(:id => ids).in_order_of(:id, ids)
 
       # Render the result
       respond_to do |format|