module ActiveLdap::Operations::LDIF::ModifyRecordLoadable::DeleteOperationModifiable
Public Instance Methods
to_modify_entries()
click to toggle source
# File lib/active_ldap/operations.rb, line 487 def to_modify_entries return [[:delete, full_attribute_name, []]] if attributes.empty? attributes.collect do |key, value| [:delete, key, value] end end