gitlab-org--gitlab-foss/lib/api/helpers/pagination.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
226 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module API
module Helpers
module Pagination
def paginate(*args, **kwargs)
Gitlab::Pagination::OffsetPagination.new(self).paginate(*args, **kwargs)
end
end
end
end