11 lines
206 B
Ruby
11 lines
206 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Helpers
|
|
module Pagination
|
|
def paginate(*args)
|
|
Gitlab::Pagination::OffsetPagination.new(self).paginate(*args)
|
|
end
|
|
end
|
|
end
|
|
end
|