Sha256: fddfe7ac35380416e67b1db169ffd003552dd2076ef0b407d3cf5ab6bca3b4e1
Contents?: true
Size: 718 Bytes
Versions: 5
Compression:
Stored size: 718 Bytes
Contents
# frozen_string_literal: true 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 def enforced? solr_document.embargo_enforced? end end end
Version data entries
5 entries across 5 versions & 1 rubygems