Skip to content
Snippets Groups Projects
  • Nik | Klampfradler's avatar
    62de0203
    Allow defining several search configs for LDAP users and groups · 62de0203
    Nik | Klampfradler authored
    This change modifies the TOML parsing behaviour to accept something like either…
    
      [ldap.groupz]
      type = "posixGroup"
      search = { base = "ou=Groups,dc=example,dc=com" }
    
    …or…
    
      [ldap.groupz]
      type = "posixGroup"
      search = [ { base = "ou=Groups,dc=example,dc=com" }, { base = "ou=Groups,dc=example2,dc=com" } ]
    
    …or…
    
      [ldap.groupz]
      type = "posixGroup"
    
      [[ldap.groups.search]]
      base = "ou=Groups,dc=example,dc=com"
    
      [[ldap.groups.search]]
      base = "ou=Groups,dc=example2,dc=com"
    62de0203
    History
    Allow defining several search configs for LDAP users and groups
    Nik | Klampfradler authored
    This change modifies the TOML parsing behaviour to accept something like either…
    
      [ldap.groupz]
      type = "posixGroup"
      search = { base = "ou=Groups,dc=example,dc=com" }
    
    …or…
    
      [ldap.groupz]
      type = "posixGroup"
      search = [ { base = "ou=Groups,dc=example,dc=com" }, { base = "ou=Groups,dc=example2,dc=com" } ]
    
    …or…
    
      [ldap.groupz]
      type = "posixGroup"
    
      [[ldap.groups.search]]
      base = "ou=Groups,dc=example,dc=com"
    
      [[ldap.groups.search]]
      base = "ou=Groups,dc=example2,dc=com"