2021-08-17 05:44:54 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2021-09-07 10:34:10 +00:00
|
|
|
module CanPaginate
|
2021-08-17 05:44:54 +00:00
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
def paginate_with(max: nil, default: nil)
|
|
|
|
@paginate_max = max
|
|
|
|
@paginate_default = default
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def pagination
|
2021-09-07 10:34:10 +00:00
|
|
|
@pagination ||= CanPaginate::Pagination.new(params, max: @paginate_max, default: @paginate_default)
|
2021-08-17 05:44:54 +00:00
|
|
|
end
|
|
|
|
end
|