debian-mirror-gitlab/app/controllers/concerns/paginated_collection.rb
2023-03-04 22:38:38 +05:30

17 lines
400 B
Ruby

# frozen_string_literal: true
module PaginatedCollection
extend ActiveSupport::Concern
private
def redirect_out_of_range(collection, total_pages = collection.total_pages)
return false if total_pages == 0
out_of_range = collection.current_page > total_pages
redirect_to(url_for(safe_params.merge(page: total_pages, only_path: true))) if out_of_range
out_of_range
end
end