module ActiveModel::MassAssignmentSecurity::Sanitizer

def sanitize(attributes)

Returns all attributes not denied by the authorizer.
def sanitize(attributes)
  sanitized_attributes = attributes.reject { |key, value| deny?(key) }
  debug_protected_attribute_removal(attributes, sanitized_attributes)
  sanitized_attributes
end