about summary refs log tree commit diff
path: root/app/models/concerns/paginable.rb
blob: 08f2076212fb10e17c7998b6b2f063b7a9c9cc5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module Paginable
  extend ActiveSupport::Concern

  included do
    scope :paginate_by_max_id, -> (limit, max_id = nil, since_id = nil) {
      query = order(arel_table[:id].desc).limit(limit)
      query = query.where(arel_table[:id].lt(max_id)) unless max_id.blank?
      query = query.where(arel_table[:id].gt(since_id)) unless since_id.blank?
      query
    }
  end
end