Desired Behavior
Currently there's no simple way of configuring how many resources are shown per page on admin index pages, and we have to decorate the controller to do so. Index controllers call set_page_and_extract_portion_from(records) with no per_page:, so page size is fixed to geared_pagination's default ([15, 30, 50, 100]). Would be nice to make this easily configurable so we can determine how many resources to show per page on different index pages.
Desired Behavior
Currently there's no simple way of configuring how many resources are shown per page on admin index pages, and we have to decorate the controller to do so. Index controllers call
set_page_and_extract_portion_from(records)with noper_page:, so page size is fixed togeared_pagination's default([15, 30, 50, 100]). Would be nice to make this easily configurable so we can determine how many resources to show per page on different index pages.