6 lines
197 B
Ruby
6 lines
197 B
Ruby
class Suppliers::ExtendedSectionSerializer < Qwaiter::Serializer
|
|
root 'section'
|
|
attributes :title, :path, :width, :height
|
|
has_many :tables, serializer: Suppliers::ExtendedTableSerializer
|
|
end
|