debian-mirror-gitlab/lib/gitlab/pagination/keyset.rb

25 lines
513 B
Ruby
Raw Normal View History

2020-01-01 13:55:28 +05:30
# frozen_string_literal: true
module Gitlab
module Pagination
module Keyset
2020-05-24 23:13:21 +05:30
SUPPORTED_TYPES = [
Project
].freeze
def self.available_for_type?(relation)
SUPPORTED_TYPES.include?(relation.klass)
end
2020-01-01 13:55:28 +05:30
def self.available?(request_context, relation)
order_by = request_context.page.order_by
2020-05-24 23:13:21 +05:30
return false unless available_for_type?(relation)
2020-01-01 13:55:28 +05:30
return false unless order_by.size == 1 && order_by[:id]
true
end
end
end
end