1 class SearchController < ApplicationController
2 def find_objects_for_index
3 @objects = Group.contents(limit: @limit, offset: @offset, filters: @filters)
7 def next_page_href with_params={}
8 super with_params.merge(last_object_class: @objects.last.class.to_s)