Module: CurationConcerns::WorkBehavior::ClassMethods
- Defined in:
- app/models/concerns/curation_concerns/work_behavior.rb
Instance Method Summary collapse
-
#_to_partial_path ⇒ Object
This governs which partial to draw when you render this type of object.
Instance Method Details
#_to_partial_path ⇒ Object
This governs which partial to draw when you render this type of object
27 28 29 30 31 32 33 |
# File 'app/models/concerns/curation_concerns/work_behavior.rb', line 27 def _to_partial_path #:nodoc: @_to_partial_path ||= begin element = ActiveSupport::Inflector.underscore(ActiveSupport::Inflector.demodulize(name)) collection = ActiveSupport::Inflector.tableize(name) "curation_concerns/#{collection}/#{element}".freeze end end |