mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
13 lines
208 B
Ruby
13 lines
208 B
Ruby
object current_order
|
|
attributes :id, :item_total
|
|
|
|
if current_order
|
|
child line_items: :line_items do
|
|
attributes :id, :variant_id, :quantity, :price
|
|
end
|
|
|
|
node :cart_count do
|
|
cart_count
|
|
end
|
|
end
|