7 lines
266 B
Ruby
7 lines
266 B
Ruby
class SupplierTableSerializer < Qwaiter::Serializer
|
|
self.root = :table
|
|
embed :ids, include: true
|
|
attributes :number, :width, :height, :position_x, :position_y, :section_id, :occupied, :needs_help
|
|
has_one :supplier, serializer: SupplierSupplierSerializer
|
|
end
|