module ActiveRecord::MassAssignmentSecurity::Core

Private Instance Methods

init_attributes(attributes, options) click to toggle source
# File lib/active_record/mass_assignment_security/core.rb, line 7
def init_attributes(attributes, options)
  assign_attributes(attributes, options)
end
init_internals() click to toggle source
Calls superclass method
# File lib/active_record/mass_assignment_security/core.rb, line 11
def init_internals
  super
  @mass_assignment_options = nil
end