Manuel Bustillo
cca869a0c4
Some checks failed
Run unit tests / unit_tests (pull_request) Failing after 1m8s
8 lines
170 B
Ruby
8 lines
170 B
Ruby
class Guest < ApplicationRecord
|
|
acts_as_taggable_on :affinity_groups, :unbreakable_bonds
|
|
belongs_to :group
|
|
def full_name
|
|
"#{first_name} #{last_name}"
|
|
end
|
|
end
|