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-7.0.8.6 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.7.10 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.7.9 lib/active_model/forbidden_attributes_protection.rb
activemodel-7.0.8.5 lib/active_model/forbidden_attributes_protection.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activemodel-7.0.8.4/lib/active_model/forbidden_attributes_protection.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activemodel-7.0.5.1/lib/active_model/forbidden_attributes_protection.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activemodel-7.0.5.1/lib/active_model/forbidden_attributes_protection.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activemodel-7.0.5.1/lib/active_model/forbidden_attributes_protection.rb
activemodel-7.0.8.4 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.7.8 lib/active_model/forbidden_attributes_protection.rb
activemodel-7.0.8.1 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.7.7 lib/active_model/forbidden_attributes_protection.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activemodel-7.0.2.3/lib/active_model/forbidden_attributes_protection.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activemodel-7.0.3.1/lib/active_model/forbidden_attributes_protection.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activemodel-6.1.6.1/lib/active_model/forbidden_attributes_protection.rb
activemodel-7.0.8 lib/active_model/forbidden_attributes_protection.rb
activemodel-7.0.7.2 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.7.6 lib/active_model/forbidden_attributes_protection.rb
activemodel-7.0.7.1 lib/active_model/forbidden_attributes_protection.rb
activemodel-6.1.7.5 lib/active_model/forbidden_attributes_protection.rb