Sha256: ceedbf795acd92f34877bab82ed9e628267a330d7be3d7c18be55fdad15e6546

Contents?: true

Size: 862 Bytes

Versions: 157

Compression:

Stored size: 862 Bytes

Contents

# frozen_string_literal: true

module ActiveModel
  # Raised when forbidden attributes are used for mass assignment.
  #
  #   class Person < ActiveRecord::Base
  #   end
  #
  #   params = ActionController::Parameters.new(name: 'Bob')
  #   Person.new(params)
  #   # => ActiveModel::ForbiddenAttributesError
  #
  #   params.permit!
  #   Person.new(params)
  #   # => #<Person id: nil, name: "Bob">
  class ForbiddenAttributesError < StandardError
  end

  module ForbiddenAttributesProtection # :nodoc:
    private
      def sanitize_for_mass_assignment(attributes)
        if attributes.respond_to?(:permitted?)
          raise ActiveModel::ForbiddenAttributesError if !attributes.permitted?
          attributes.to_h
        else
          attributes
        end
      end
      alias :sanitize_forbidden_attributes :sanitize_for_mass_assignment
  end
end

Version data entries

157 entries across 153 versions & 15 rubygems

Version Path
activemodel-6.1.7 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.0.6 lib/active_model/forbidden_attributes_protection.rb
activemodel-7.0.3.1 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.6.1 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.0.5.1 lib/active_model/forbidden_attributes_protection.rb
activemodel-5.2.8.1 lib/active_model/forbidden_attributes_protection.rb
activemodel-5.2.8 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.0.5 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.6 lib/active_model/forbidden_attributes_protection.rb
activemodel-7.0.3 lib/active_model/forbidden_attributes_protection.rb
activemodel-7.0.2.4 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.5.1 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.0.4.8 lib/active_model/forbidden_attributes_protection.rb
activemodel-5.2.7.1 lib/active_model/forbidden_attributes_protection.rb
activemodel-5.2.7 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.5 lib/active_model/forbidden_attributes_protection.rb
activemodel-7.0.2.3 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.4.7 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.0.4.7 lib/active_model/forbidden_attributes_protection.rb
activemodel-5.2.6.3 lib/active_model/forbidden_attributes_protection.rb