Module: Spree::Core::ControllerHelpers::StrongParameters
- Included in:
 - BaseController
 
- Defined in:
 - lib/spree/core/controller_helpers/strong_parameters.rb
 
Instance Method Summary collapse
- #permitted_attributes ⇒ Object
 - #permitted_checkout_attributes ⇒ Object
 - #permitted_credit_card_update_attributes ⇒ Object
 - #permitted_order_attributes ⇒ Object
 - #permitted_payment_attributes ⇒ Object
 - #permitted_product_attributes ⇒ Object
 - #permitted_source_attributes ⇒ Object
 - #permitted_user_attributes ⇒ Object
 
Instance Method Details
#permitted_attributes ⇒ Object
      7 8 9  | 
    
      # File 'lib/spree/core/controller_helpers/strong_parameters.rb', line 7 def permitted_attributes Spree::PermittedAttributes end  | 
  
#permitted_checkout_attributes ⇒ Object
      33 34 35 36 37 38 39 40  | 
    
      # File 'lib/spree/core/controller_helpers/strong_parameters.rb', line 33 def permitted_checkout_attributes permitted_attributes.checkout_attributes + [ bill_address_attributes: permitted_address_attributes, ship_address_attributes: permitted_address_attributes, payments_attributes: permitted_payment_attributes, shipments_attributes: permitted_shipment_attributes ] end  | 
  
#permitted_credit_card_update_attributes ⇒ Object
      15 16 17 18 19  | 
    
      # File 'lib/spree/core/controller_helpers/strong_parameters.rb', line 15 def permitted_credit_card_update_attributes permitted_attributes.credit_card_update_attributes + [ address_attributes: permitted_address_attributes ] end  | 
  
#permitted_order_attributes ⇒ Object
      42 43 44 45 46  | 
    
      # File 'lib/spree/core/controller_helpers/strong_parameters.rb', line 42 def permitted_order_attributes permitted_checkout_attributes + [ line_items_attributes: permitted_line_item_attributes ] end  | 
  
#permitted_payment_attributes ⇒ Object
      21 22 23 24 25  | 
    
      # File 'lib/spree/core/controller_helpers/strong_parameters.rb', line 21 def permitted_payment_attributes permitted_attributes.payment_attributes + [ source_attributes: permitted_source_attributes ] end  | 
  
#permitted_product_attributes ⇒ Object
      48 49 50 51 52  | 
    
      # File 'lib/spree/core/controller_helpers/strong_parameters.rb', line 48 def permitted_product_attributes permitted_attributes.product_attributes + [ product_properties_attributes: permitted_product_properties_attributes ] end  | 
  
#permitted_source_attributes ⇒ Object
      27 28 29 30 31  | 
    
      # File 'lib/spree/core/controller_helpers/strong_parameters.rb', line 27 def permitted_source_attributes permitted_attributes.source_attributes + [ address_attributes: permitted_address_attributes ] end  | 
  
#permitted_user_attributes ⇒ Object
      54 55 56 57 58 59  | 
    
      # File 'lib/spree/core/controller_helpers/strong_parameters.rb', line 54 def permitted_user_attributes permitted_attributes.user_attributes + [ bill_address_attributes: permitted_address_attributes, ship_address_attributes: permitted_address_attributes ] end  |