Files
mozo-backend/app/serializers/list_serializer.rb
T
2013-10-07 23:00:01 +02:00

9 lines
247 B
Ruby

class ListSerializer < Qwaiter::Serializer
embed :ids
attributes :state, :needs_help, :needs_payment, :is_paid, :price, :table_id, :table_number, :section_id, :has_active_orders
def has_active_orders
object.has_active_orders?
end
end