method
to_partial_path
v8.1.1 -
Show latest stable
- Class:
ActiveModel::Conversion
to_partial_path()public
Returns a string identifying the path associated with the object. ActionPack uses this to find a suitable partial to represent the object.
class Person include ActiveModel::Conversion end person = Person.new person.to_partial_path # => "people/person"