class ActiveSambaLdap::Idmap

Public Class Methods

ldap_mapping(options={}) click to toggle source
Calls superclass method
# File lib/active_samba_ldap/idmap.rb, line 8
def ldap_mapping(options={})
  default_options = {
    :dn_attribute => "sambaSID",
    :prefix => configuration[:idmap_suffix],
    :classes => ["top", "sambaIdmapEntry"],
  }
  options = default_options.merge(options)
  super options
end