Introduce per_page parameter for custom page size

This commit is contained in:
Sebastian Serth
2022-01-12 20:38:34 +01:00
parent 9d53ff20b5
commit 0a6ae91db8
17 changed files with 28 additions and 20 deletions

View File

@ -7,7 +7,7 @@ class StudyGroupsController < ApplicationController
def index
@search = policy_scope(StudyGroup).ransack(params[:q])
@study_groups = @search.result.includes(:consumer).order(:name).paginate(page: params[:page])
@study_groups = @search.result.includes(:consumer).order(:name).paginate(page: params[:page], per_page: per_page_param)
authorize!
end