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