This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-24 05:21:53 -07:00
|
|
|
module Paginable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2016-10-02 13:35:27 -07:00
|
|
|
def self.paginate_by_max_id(limit, max_id = nil, since_id = nil)
|
|
|
|
query = order('id desc').limit(limit)
|
|
|
|
query = query.where('id < ?', max_id) unless max_id.blank?
|
|
|
|
query = query.where('id > ?', since_id) unless since_id.blank?
|
|
|
|
query
|
|
|
|
end
|
2016-03-24 05:21:53 -07:00
|
|
|
end
|
|
|
|
end
|