mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
0a0b9a271a
08f8de84eb/Gemfile.lock (L38)
Code Climate is using RuboCop v0.46.0.
Change several rules to maintain compatibility.
15 lines
401 B
Ruby
15 lines
401 B
Ruby
# frozen_string_literal: true
|
|
|
|
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)) if max_id.present?
|
|
query = query.where(arel_table[:id].gt(since_id)) if since_id.present?
|
|
query
|
|
}
|
|
end
|
|
end
|