wedding-planner/app/serializers/serializable_group.rb

8 lines
126 B
Ruby
Raw Normal View History

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 16:29:10 +02:00
end