running eslint again

This commit is contained in:
Julian Lam
2017-02-24 12:47:46 -05:00
parent 72e77772db
commit ddea9f534e
26 changed files with 356 additions and 359 deletions

View File

@@ -69,7 +69,7 @@ module.exports = function (Groups) {
async.series(tasks, next);
},
function (results, next) {
plugins.fireHook('action:group.create', {group: groupData});
plugins.fireHook('action:group.create', { group: groupData });
next(null, groupData);
},
], callback);

View File

@@ -42,7 +42,7 @@ module.exports = function (Groups) {
return callback(err);
}
Groups.resetCache();
plugins.fireHook('action:group.destroy', {group: groupObj});
plugins.fireHook('action:group.destroy', { group: groupObj });
callback();
});
});