removeUserFromRole: function (userId, role) {
        if (role === "admin") {
            throw new Meteor.Error("Marking users as admins is not possible from the web interface");
        }
        if (!PermissionsEnum.Users.isAdmin(Meteor.userId())) {