directoryserver: comments can be provided in allowlist

This commit is contained in:
Girish Ramakrishnan
2024-01-13 12:33:06 +01:00
parent b57ad9b8c1
commit 4f9e43859c
3 changed files with 3 additions and 3 deletions

View File

@@ -82,7 +82,7 @@ describe('Directory Server (LDAP)', function () {
async.series([
setup,
directoryServer.start.bind(null),
directoryServer.setConfig.bind(null, { enabled: true, secret: auth.secret, allowlist: '127.0.0.1' }),
directoryServer.setConfig.bind(null, { enabled: true, secret: auth.secret, allowlist: '127.0.0.1' }, auditSource),
async () => {
group = await groups.add({ name: 'ldap-test-1' });
await groups.setMembers(group.id, [ admin.id, user.id ]);