16 lines
255 B
Ruby
16 lines
255 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
# frozen_string_literal: true
|
|
|
|
class SerializableGroup < JSONAPI::Serializable::Resource
|
|
type 'group'
|
|
|
|
attributes :name, :icon
|
|
|
|
has_many :children
|
|
|
|
attribute :guest_count do
|
|
@object.guests.count
|
|
end
|
|
end
|