method
to_key
v4.2.7 -
Show latest stable
- Class:
ActiveModel::Conversion
to_key()public
Returns an Array of all key attributes if any is set, regardless if the object is persisted or not. Returns nil if there are no key attributes.
class Person include ActiveModel::Conversion attr_accessor :id end person = Person.create(id: 1) person.to_key # => [1]