Files
mozo-backend/app/serializers/users/product_order_serializer.rb
T
2015-09-05 14:14:28 +02:00

7 lines
256 B
Ruby

class Users::ProductOrderSerializer
include Qwaiter::UserBaseSerializer
attributes :quantity, :price, :product_name, :product_variant
# belongs_to :product #DO NOT USE THIS, THIS IS NOT NEEDED
has_one :order, serializer: Users::OrderSerializer
end