addUserToGroup: function (userId, group) {
        if (!PermissionsEnum.Users.isAdmin(Meteor.userId())) {
            throw new Meteor.Error("Unauthorized");
        }
        Meteor.users.update({_id: userId}, {$addToSet: {groups: group}});