Question

I'm trying to remove a model from my collection, but I don't want to lose the view of that model on my front end (it's a summary screen).

I'm using this at the moment to remove the model:

groupChats.remove(chatid);

Is there any way to do this, or is it not possible? (I'm guessing that somewhere I can unbind the two, but no idea how to, or where it is documented).

Was it helpful?

Solution

Solution provided by Cheng Ping Onn in comments:

groupChats.remove(chatid, {silent: true});
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top