Sha256: 66c58de0581afe36708681bda39c7bf741781c798e64ba8223a5d09f1785534b

Contents?: true

Size: 1.24 KB

Versions: 94

Compression:

Stored size: 1.24 KB

Contents

module Spree
  module Core
    module ControllerHelpers
      module StrongParameters
        def permitted_attributes
          Spree::PermittedAttributes
        end

        delegate *Spree::PermittedAttributes::ATTRIBUTES,
                 to: :permitted_attributes,
                 prefix: :permitted

        def permitted_payment_attributes
          permitted_attributes.payment_attributes + [
            source_attributes: permitted_source_attributes
          ]
        end

        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

        def permitted_order_attributes
          permitted_checkout_attributes + [
            line_items_attributes: permitted_line_item_attributes
          ]
        end

        def permitted_product_attributes
          permitted_attributes.product_attributes + [
            product_properties_attributes: permitted_product_properties_attributes
          ]
        end
      end
    end
  end
end

Version data entries

94 entries across 94 versions & 2 rubygems

Version Path
spree_core-3.1.0.rc4 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.0.9 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.1.0.rc3 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.1.0.rc2 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.1.0.rc1 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.0.8 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.0.7 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.0.6.1 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.0.6 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.0.5 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.0.4 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-2.4.10 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.0.3 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-2.4.9 lib/spree/core/controller_helpers/strong_parameters.rb
solidus_core-1.0.0.pre2 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.0.2 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-2.4.8 lib/spree/core/controller_helpers/strong_parameters.rb
solidus_core-1.0.0.pre lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-3.0.1 lib/spree/core/controller_helpers/strong_parameters.rb
spree_core-2.4.7 lib/spree/core/controller_helpers/strong_parameters.rb