2024-07-11 20:08:26 +02:00
|
|
|
class Guest < ApplicationRecord
|
2024-07-11 20:41:07 +02:00
|
|
|
acts_as_taggable_on :affinity_groups, :unbreakable_bonds
|
2024-08-11 18:25:12 +02:00
|
|
|
belongs_to :group
|
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
|