9 lines
255 B
Ruby
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
|