From: Anton Khorev Date: Thu, 12 Sep 2024 06:43:56 +0000 (+0300) Subject: Merge branch 'pull/5182' X-Git-Tag: live~659 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/e2a6701696761f8f290796a0b4c30df9a7425ea4?ds=inline;hp=-c Merge branch 'pull/5182' --- e2a6701696761f8f290796a0b4c30df9a7425ea4 diff --combined app/controllers/users_controller.rb index bc1baf8a5,3ba914210..fc893c9c3 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@@ -38,9 -38,7 +38,9 @@@ class UsersController < ApplicationCont users = users.where(:status => @params[:status]) if @params[:status] users = users.where(:creation_ip => @params[:ip]) if @params[:ip] - @users_count = users.count + @users_count = users.limit(501).count + @users_count = I18n.t("count.at_least_pattern", :count => 500) if @users_count > 500 + @users, @newer_users_id, @older_users_id = get_page_items(users, :limit => 50) render :partial => "page" if turbo_frame_request_id == "pagination" @@@ -269,6 -267,7 +269,7 @@@ current_user.data_public = true current_user.description = "" if current_user.description.nil? current_user.creation_ip = request.remote_ip + current_user.creation_address = request.remote_ip current_user.languages = http_accept_language.user_preferred_languages current_user.terms_agreed = Time.now.utc current_user.tou_agreed = Time.now.utc