Sha256: ab79a31f7f9388ad1da14dfe9561237ab77cc70d79fa39c40e80c13b0bc0f89c
Contents?: true
Size: 623 Bytes
Versions: 48
Compression:
Stored size: 623 Bytes
Contents
module Hyrax # Presents embargoed objects class EmbargoPresenter include ModelProxy attr_accessor :solr_document delegate :human_readable_type, :visibility, :to_s, to: :solr_document # @param [SolrDocument] solr_document def initialize(solr_document) @solr_document = solr_document end def embargo_release_date solr_document.embargo_release_date.to_formatted_s(:rfc822) end def visibility_after_embargo solr_document.fetch('visibility_after_embargo_ssim', []).first end def embargo_history solr_document['embargo_history_ssim'] end end end
Version data entries
48 entries across 48 versions & 1 rubygems