Метеор Разрешить Upsert?

Получение этой ошибки в консоли при попытке загрузки в коллекцию:

msgstr "обновление не удалось: доступ запрещен. Запреты на загрузку запрещены."

Вот правила разрешения, которые я указал:

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;
    }

    });

}

Вот часть 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 );
};

Ответы на вопрос(2)

Ваш ответ на вопрос