Manuel Bustillo cca869a0c4
Some checks failed
Run unit tests / unit_tests (pull_request) Failing after 1m8s
Display group name in the list of guests
2024-08-11 18:25:12 +02:00

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