Module: ActiveLdap::Operations::ClassOnlyDelete

Defined in:
lib/active_ldap/operations.rb

Instance Method Summary collapse

Instance Method Details

#delete(targets, options = {}) ⇒ Object



568
569
570
571
572
573
574
# File 'lib/active_ldap/operations.rb', line 568

def delete(targets, options={})
  targets = [targets] unless targets.is_a?(Array)
  targets = targets.collect do |target|
    ensure_dn_attribute(ensure_base(target))
  end
  delete_entry(targets, options)
end

#destroy(targets, options = {}) ⇒ Object



561
562
563
564
565
566
# File 'lib/active_ldap/operations.rb', line 561

def destroy(targets, options={})
  targets = [targets] unless targets.is_a?(Array)
  targets.each do |target|
    find(target, options).destroy
  end
end