2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-21 14:15:46 -05:00
|
|
|
module API
|
|
|
|
# Concern for declare pagination params.
|
|
|
|
#
|
|
|
|
# @example
|
2020-04-27 23:09:53 -04:00
|
|
|
# class CustomApiResource < Grape::API
|
2016-11-21 14:15:46 -05:00
|
|
|
# include PaginationParams
|
|
|
|
#
|
|
|
|
# params do
|
|
|
|
# use :pagination
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
module PaginationParams
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
helpers do
|
|
|
|
params :pagination do
|
2017-01-16 23:45:07 -05:00
|
|
|
optional :page, type: Integer, default: 1, desc: 'Current page number'
|
|
|
|
optional :per_page, type: Integer, default: 20, desc: 'Number of items per page'
|
2016-11-21 14:15:46 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|