noesya/osuny

View on GitHub
app/models/communication/website/page/research_paper.rb

Summary

Maintainability
A
0 mins
Test Coverage
C
71%
class Communication::Website::Page::ResearchPaper < Communication::Website::Page

  def is_necessary_for_website?
    website.about && website.about&.respond_to?(:papers)
  end

  def dependencies
    super +
    [website.config_default_languages] +
    website.research_papers
  end

  def git_path_relative
    'papers/_index.html'
  end
end