Sha256: 57926e74c0869c98b529e53b7e84e655d372fe3151fbacc88657965dbd56b450
Contents?: true
Size: 1.23 KB
Versions: 3
Compression:
Stored size: 1.23 KB
Contents
object @order extends "spree/api/orders/order" if lookup_context.find_all("spree/api/orders/#{root_object.state}").present? extends "spree/api/orders/#{root_object.state}" end child :billing_address => :bill_address do extends "spree/api/addresses/show" end child :shipping_address => :ship_address do extends "spree/api/addresses/show" end child :line_items => :line_items do extends "spree/api/line_items/show" end child :payments => :payments do attributes *payment_attributes child :payment_method => :payment_method do attributes :id, :name, :environment end child :source => :source do attributes *payment_source_attributes if @current_user_roles.include?('admin') attributes *(payment_source_attributes + [:gateway_customer_profile_id, :gateway_payment_profile_id]) else attributes *payment_source_attributes end end end child :shipments => :shipments do extends "spree/api/shipments/small" end child :adjustments => :adjustments do extends "spree/api/adjustments/show" end # Necessary for backend's order interface node :permissions do { can_update: current_ability.can?(:update, root_object) } end child :valid_credit_cards => :credit_cards do extends "spree/api/credit_cards/show" end
Version data entries
3 entries across 3 versions & 1 rubygems