I'm making a website with Telescope, and I don't want to publish some information about the user.
I'm trying to make it so it won't publish singleUser
in the telescope users publications.
I could do this by downloading the telescope package and removing that code, but I don't want to modify the telescope source code, as recommended here.
I couldn't find any way to unpublish a meteor collection. And when I try to make my own Meteor.publish('singleUser', function() {});
, I get the warning Ignoring duplicate publish named 'singleUser'
.
Any advice on how to unpublish, or undo a published collection is helpful.