12 lines
186 B
Ruby
12 lines
186 B
Ruby
class SerializableGroup < JSONAPI::Serializable::Resource
|
|
type 'group'
|
|
|
|
attributes :name, :icon
|
|
|
|
has_many :children
|
|
|
|
attribute :guest_count do
|
|
@object.guests.count
|
|
end
|
|
end
|