8 lines
153 B
Ruby
Raw Permalink Normal View History

2024-07-11 20:08:26 +02:00
class Guest < ApplicationRecord
acts_as_taggable_on :affinity_groups, :unbreakable_bonds
2024-07-11 20:13:22 +02:00
def full_name
"#{first_name} #{last_name}"
end
2024-07-11 20:08:26 +02:00
end