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
|