UNC-Libraries/hy-c

View on GitHub
app/presenters/hyrax/article_presenter.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true
# Generated via
#  `rails generate hyrax:work Article`
module Hyrax
  class ArticlePresenter < Hyrax::WorkShowPresenter
    delegate :abstract, :admin_note, :alternative_title, :bibliographic_citation, :copyright_date, :creator_display, :date_captured,
             :date_issued, :date_other, :dcmi_type, :digital_collection, :deposit_record, :doi, :edition, :extent, :funder,
             :issn, :journal_issue, :journal_title, :journal_volume, :language_label,
             :license_label, :note, :page_end, :page_start, :peer_review_status, :place_of_publication, :rights_holder,
             :rights_statement_label, :translator_display, to: :solr_document

    # See: WorkShowPresenter.scholarly?
    def scholarly?
      true
    end
  end
end