Hardcoding ldap filters for now.

This commit is contained in:
Víðir Valberg Guðmundsson 2019-02-09 14:33:21 +01:00
parent 69d53c26e9
commit 05f5628de2
1 changed files with 6 additions and 5 deletions

View File

@ -425,7 +425,7 @@ module.exports = {
// //
// @type string // @type string
// //
baseDN: "{{ ldap_dn }}", // baseDN: "",
// //
// LDAP primary key // LDAP primary key
@ -452,14 +452,14 @@ module.exports = {
// //
// @type string // @type string
// //
rootDN: "", rootDN: "cn=admin,dc=data,dc=coop",
// //
// Password of the lounge LDAP system user // Password of the lounge LDAP system user
// //
// @type string // @type string
// //
rootPassword: "", rootPassword: "{{ ldap_admin_password }}",
// //
// LDAP filter // LDAP filter
@ -467,14 +467,15 @@ module.exports = {
// @type string // @type string
// @default "uid" // @default "uid"
// //
filter: "uid", //filter: "(objectClass=inetOrgPerson)(memberOf=ou=members,dc=data,dc=coop)",
filter: "(objectClass=inetOrgPerson)",
// //
// LDAP search base (search only within this node) // LDAP search base (search only within this node)
// //
// @type string // @type string
// //
base: "", base: "{{ ldap_dn }}",
// //
// LDAP search scope // LDAP search scope