mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
6 lines
211 B
Ruby
6 lines
211 B
Ruby
# Sets a maximum number of returned records when Kaminari pagination is used on a query but no
|
|
# per_page value has been passed to the #per method.
|
|
Kaminari.configure do |config|
|
|
config.max_per_page = 100
|
|
end
|