wedding-planner/app/serializers/serializable_group.rb

16 lines
255 B
Ruby

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