From: ENT8R Date: Sat, 26 Aug 2023 08:14:40 +0000 (+0200) Subject: Sort users by their ids X-Git-Tag: live~1476^2~1 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/be96aa7cb42a2d43f84717a023f57f52b38cf6b7 Sort users by their ids --- diff --git a/app/controllers/api/users_controller.rb b/app/controllers/api/users_controller.rb index a921b6db7..888753fe9 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).order(:id) # Render the result respond_to do |format|