Zezwalaj na meteoryt?

Uzyskanie tego błędu w konsoli, gdy próbuję dodać do kolekcji:

„aktualizacja nie powiodła się: odmowa dostępu. Upserty nie są dozwolone w ograniczonej kolekcji”.

Oto reguły zezwalające, które określiłem:

if (Meteor.isClient) {
    Meteor.subscribe('customers');
}

customers = Customers

if (Meteor.isServer) {

Meteor.publish('customers', function() {
    return customers.find();
});

customers.allow({

    insert: function (document) {
        return true;
    },
    update: function () {
        return true;
    },
    remove: function () {
        return true;
    }

    });

}

Oto część upsert:

Customer.prototype.create = function ( name, address, phone, cell, email, website, contact, shipping ) {

var attr = {
    name : name, 
    address : address, 
    phone : phone,
    cell : cell,
    email : email,
    website : website,
    contact : contact,
    shipping : shipping
};

Customers.upsert( Customers.maybeFindOne( attr )._id, attr );

    return new Customer( attr );
};

questionAnswers(2)

yourAnswerToTheQuestion