I have the following publication:
Meteor.publish( 'usersadmin', function() {
return Meteor.users.find( {}, { fields: { "emails": 1, "roles": 1, "profile": 1 } } )
});
and I'm displaying the publication in the following table using aldeed:tabular:
TabularTables.UsersAdmin = new Tabular.Table({
name: "User List",
collection: Meteor.users,
pub: "usersadmin",
allow: function(userId) {
return Roles.userIsInRole(userId, 'admin');
},
columns: [{
data: "emails",
title: "Email",
render: function(val, type, doc) {
return val[0].address;
}
}, {
data: "roles",
title: "Roles",
render: function(val, type, doc) {
return val[0]._id;
}
}]);
The table displays fine, but in the server terminal the following exception shows up:
Exception from sub usersadmin id 2d7NFjgRXFBZ2s44R Error: Did not check() all arguments during publisher 'usersadmin'
What causes this?
You receive this error because you need to check the arguments passed to your
usersadmin
publish function by usingcheck(value, pattern)
.The reactive DataTables, implemented in the
aldeed:tabular
package, pass the argumentstableName
,ids
andfields
to the publish function; that's why an exception is thrown.According to the documentation, you need to take care of the following requirements:
This should fix the error: