7 lines
219 B
Ruby
7 lines
219 B
Ruby
class SupplierExtendedSectionSerializer < Qwaiter::Serializer
|
|
root 'section'
|
|
embed :ids, include: true
|
|
attributes :title, :path, :width, :height
|
|
has_many :tables, serializer: SupplierExtendedTableSerializer
|
|
end
|