Sha256: 08e28d611e7fd4a848cf5482d53898998eb75ff0aee4937eb1c2f799b1300ffd

Contents?: true

Size: 427 Bytes

Versions: 10

Compression:

Stored size: 427 Bytes

Contents

require 'active_samba_ldap/base'

module ActiveSambaLdap
  class Ou < Base
    include Reloadable

    class << self
      def ldap_mapping(options={})
        default_options = {
          :dn_attribute => "ou",
          :prefix => "",
          :classes => ["top", "organizationalUnit"],
          :scope => :sub,
        }
        options = default_options.merge(options)
        super(options)
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
activesambaldap-0.1.0 lib/active_samba_ldap/ou.rb
activesambaldap-0.0.9 lib/active_samba_ldap/ou.rb
activesambaldap-0.0.8 lib/active_samba_ldap/ou.rb
ActiveSambaLdap-0.0.7 lib/active_samba_ldap/ou.rb
activesambaldap-0.0.7 lib/active_samba_ldap/ou.rb
activesambaldap-0.0.2 lib/active_samba_ldap/ou.rb
activesambaldap-0.0.6 lib/active_samba_ldap/ou.rb
activesambaldap-0.0.5 lib/active_samba_ldap/ou.rb
activesambaldap-0.0.4 lib/active_samba_ldap/ou.rb
activesambaldap-0.0.3 lib/active_samba_ldap/ou.rb