Files
mozo-backend/app/serializers/supplier_table_serializer.rb
T
2015-02-18 22:36:47 +01:00

7 lines
258 B
Ruby

class SupplierTableSerializer < Qwaiter::Serializer
self.root = :table
embed :ids, include: true
attributes :number, :width, :height, :position_x, :position_y, :section_id, :needs_help
has_one :supplier, serializer: Suppliers::SupplierSerializer
end