Sha256: a0d96aae5e7ca153d9502a5488d87444be94f5f66cc4f02308411a7962d64d43
Contents?: true
Size: 1.15 KB
Versions: 25
Compression:
Stored size: 1.15 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.concat([: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
Version data entries
25 entries across 25 versions & 1 rubygems