wedding-planner/app/serializers/serializable_group.rb

16 lines
277 B
Ruby
Raw Normal View History

2025-01-23 21:34:23 +00:00
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
# frozen_string_literal: true
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