groups.create() now needs source argument

This commit is contained in:
Johannes Zellner
2020-06-04 14:17:56 +02:00
parent 812bdcd462
commit 42cbcc6ce3
6 changed files with 38 additions and 21 deletions

View File

@@ -133,7 +133,7 @@ function setup(done) {
});
},
function (callback) {
groups.create(GROUP_NAME, function (error, result) {
groups.create(GROUP_NAME, '', function (error, result) {
if (error) return callback(error);
GROUP_ID = result.id;