2024-12-28 18:30:54 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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
|