Files
mozo-backend/app/serializers/users/order_serializer.rb
T
2015-09-02 15:52:48 +02:00

9 lines
255 B
Ruby

class Users::OrderSerializer < Qwaiter::Serializer
attributes :state #, :list_id, :section_id, :table_id #, :price
has_many :product_orders, serializer: Users::ProductOrderSerializer
belongs_to :list
#belongs_to :section
#belongs_to :table
end