Sha256: 6bc1a8d7b3cdb7c362bbf7dce4e411c4d88eab603c2c2496b0f7537d3ab21080

Contents?: true

Size: 380 Bytes

Versions: 25

Compression:

Stored size: 380 Bytes

Contents

# frozen_string_literal: true
module Hyrax
  # Finds embargoed objects with release dates in the past
  class ExpiredEmbargoSearchBuilder < EmbargoSearchBuilder
    self.default_processor_chain += [:only_expired_embargoes]

    def only_expired_embargoes(solr_params)
      solr_params[:fq] ||= []
      solr_params[:fq] = 'embargo_release_date_dtsi:[* TO NOW]'
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
hyrax-5.0.1 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-5.0.0 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-5.0.0.rc3 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-5.0.0.rc2 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-5.0.0.rc1 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-3.6.0 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-4.0.0 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-4.0.0.rc3 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-4.0.0.rc2 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-4.0.0.rc1 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-3.5.0 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-4.0.0.beta2 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-3.4.2 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-4.0.0.beta1 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-3.4.1 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-3.4.0 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-3.3.0 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-3.2.0 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-3.1.0 app/search_builders/hyrax/expired_embargo_search_builder.rb
hyrax-3.0.2 app/search_builders/hyrax/expired_embargo_search_builder.rb