Module: Hyrax::CollectionBehavior::ClassMethods

Defined in:
app/models/concerns/hyrax/collection_behavior.rb

Instance Method Summary collapse

Instance Method Details

#_to_partial_pathObject

This governs which partial to draw when you render this type of object



73
74
75
76
77
78
79
# File 'app/models/concerns/hyrax/collection_behavior.rb', line 73

def _to_partial_path # :nodoc:
  @_to_partial_path ||= begin
    element = ActiveSupport::Inflector.underscore(ActiveSupport::Inflector.demodulize(name))
    collection = ActiveSupport::Inflector.tableize(name)
    "hyrax/#{collection}/#{element}"
  end
end