wedding-planner/app/serializers/serializable_group.rb

14 lines
224 B
Ruby
Raw Normal View History

2024-10-27 21:42:45 +00:00
# Copyright (C) 2024 Manuel Bustillo
2024-08-11 16:29:10 +02:00
class SerializableGroup < JSONAPI::Serializable::Resource
type 'group'
attributes :name, :icon
2024-08-11 17:26:43 +02:00
has_many :children
2024-08-11 18:56:38 +02:00
attribute :guest_count do
@object.guests.count
end
2024-08-11 16:29:10 +02:00
end