Sha256: ac894f7d404e685ecb926f97ee971acc7a88076af4fcd7bb26548f29de4a2817
Contents?: true
Size: 623 Bytes
Versions: 24
Compression:
Stored size: 623 Bytes
Contents
# frozen_string_literal: true module Hyrax module Dashboard ## Shows a list of all works to the admins class WorksController < Hyrax::My::WorksController # Define collection specific filter facets. configure_blacklight do |config| config.search_builder_class = Hyrax::Dashboard::WorksSearchBuilder end private def search_action_url(*args) hyrax.dashboard_works_url(*args) end # The url of the "more" link for additional facet values def search_facet_path(args = {}) hyrax.dashboard_works_facet_path(args[:id]) end end end end
Version data entries
24 entries across 24 versions & 1 rubygems