Sha256: 36343fc03fa1c8d0cc848b3480899e211789a45721d96329eefbc9bedc6bff48
Contents?: true
Size: 543 Bytes
Versions: 24
Compression:
Stored size: 543 Bytes
Contents
# frozen_string_literal: true module Hyrax module My class SharesController < MyController configure_blacklight do |config| config.search_builder_class = Hyrax::My::SharesSearchBuilder end def index super end private def search_action_url(*args) hyrax.dashboard_shares_url(*args) end # The url of the "more" link for additional facet values def search_facet_path(args = {}) hyrax.dashboard_shares_facet_path(args[:id]) end end end end
Version data entries
24 entries across 24 versions & 1 rubygems