Class: ActiveContent::Profile

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
lib/active_content/models/profile.rb

Instance Method Summary collapse

Instance Method Details

#nameObject

Name composed by first and last name



12
13
14
15
16
# File 'lib/active_content/models/profile.rb', line 12

def name
  if first_name or last_name
    "#{first_name} #{last_name}".strip
  end
end