Last Updated: March 25, 2019
·
2.317K
· krankin

Custom items per page in Active Admin

https://github.com/gregbell/active_admin/issues/210

Add instance variable @per_page to you app/admin/*.rb file

Example from link:

ActiveAdmin.register Post do
  before_filter :only => :index do
    @per_page = 100
  end
end