Class: Munificent::ApplicationRecord

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/munificent/application_record.rb

Instance Method Summary collapse

Instance Method Details

#to_sObject



14
15
16
17
18
19
20
# File 'app/models/munificent/application_record.rb', line 14

def to_s
  if respond_to?(:name)
    name.presence || "(No name)"
  else
    super
  end
end