class Tickethub::Supplier::User

Public Instance Methods

full_name() click to toggle source
# File lib/tickethub/supplier/user.rb, line 9
def full_name
  [first_name, last_name].reject(&:nil?).join ' '
end