groups: add events to eventlog
This commit is contained in:
@@ -78,12 +78,12 @@ describe('Ldap Server', function () {
|
||||
async () => await mail.setAliases(mailboxName, domain.domain, [ { name: mailAliasName, domain: domain.domain}, { name: mailAliasWildcardName + '*', domain: domain.domain } ], auditSource),
|
||||
ldapServer.start.bind(null),
|
||||
async () => {
|
||||
group = await groups.add({ name: 'ldap-test-1' });
|
||||
await groups.setMembers(group, [ admin.id, user.id ], {});
|
||||
group = await groups.add({ name: 'ldap-test-1' }, auditSource);
|
||||
await groups.setMembers(group, [ admin.id, user.id ], {}, auditSource);
|
||||
},
|
||||
async () => {
|
||||
group2 = await groups.add({ name: 'ldap-test-2' });
|
||||
await groups.setMembers(group2, [ admin.id ], {});
|
||||
group2 = await groups.add({ name: 'ldap-test-2' }, auditSource);
|
||||
await groups.setMembers(group2, [ admin.id ], {}, auditSource);
|
||||
}
|
||||
], done);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user