2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module API
|
|
|
|
module Helpers
|
|
|
|
module Pagination
|
|
|
|
def paginate(relation)
|
2019-12-26 22:10:19 +05:30
|
|
|
::Gitlab::Pagination::OffsetPagination.new(self).paginate(relation)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|