The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
405 B

  1. # frozen_string_literal: true
  2. module Paginable
  3. extend ActiveSupport::Concern
  4. included do
  5. scope :paginate_by_max_id, ->(limit, max_id = nil, since_id = nil) {
  6. query = order(arel_table[:id].desc).limit(limit)
  7. query = query.where(arel_table[:id].lt(max_id)) unless max_id.blank?
  8. query = query.where(arel_table[:id].gt(since_id)) unless since_id.blank?
  9. query
  10. }
  11. end
  12. end