Module: ActiveLdap::Operations::LDIF::AddRecordLoadable

Defined in:
lib/active_ldap/operations.rb

Instance Method Summary collapse

Instance Method Details

#load(operator, options) ⇒ Object



355
356
357
358
359
360
361
# File 'lib/active_ldap/operations.rb', line 355

def load(operator, options)
  entries = attributes.collect do |key, value|
    [:add, key, value]
  end
  options = {:controls => controls}.merge(options)
  operator.modify_entry(dn, entries, options)
end