mattvanhorn/BJJLife

View on GitHub
app/exhibits/journal_exhibit.rb

Summary

Maintainability
A
0 mins
Test Coverage
class JournalExhibit < DisplayCase::Exhibit
  include ExhibitBaseHelper

  def self.applicable_to?(object, context)
    object.class.name == 'Journal'
  end

  exhibit_query :entries

end