wedding-planner/app/serializers/serializable_guest.rb
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

14 lines
248 B
Ruby

class SerializableGuest < JSONAPI::Serializable::Resource
type 'guest'
attributes :id, :email, :group_id
attribute :name do
"#{@object.first_name} #{@object.last_name}"
end
attribute :group_name do
@object.group.name
end
end