Add source property to userGroups

This commit is contained in:
Johannes Zellner
2020-06-04 13:25:55 +02:00
parent c143450dc6
commit c5e84d5469
6 changed files with 31 additions and 9 deletions

View File

@@ -1645,7 +1645,7 @@ describe('database', function () {
var GROUP_ID_1 = 'foundersid';
it('can create a group', function (done) {
groupdb.add(GROUP_ID_1, 'founders', function (error) {
groupdb.add(GROUP_ID_1, 'founders', 'ldap', function (error) {
expect(error).to.be(null);
done();
});