# These before_filters apply the hydra access controls
before_filter :enforce_show_permissions, :only=>:show
is now
# These before_filters apply the hydra access controls
before_action :enforce_show_permissions, only: :show
it should be commented out, and the following line added afterwards...
Hydra::SearchBuilder.default_processor_chain -= [:add_access_controls_to_solr_params]
is now
it should be commented out, and the following line added afterwards...
Hydra::SearchBuilder.default_processor_chain -= [:add_access_controls_to_solr_params]