Skip to content

Instantly share code, notes, and snippets.

@brlafreniere
Last active August 29, 2015 14:18
Show Gist options
  • Save brlafreniere/2382261cfe50a0467b35 to your computer and use it in GitHub Desktop.
Save brlafreniere/2382261cfe50a0467b35 to your computer and use it in GitHub Desktop.
if (Meteor.isServer) {
Messages.allow({
'insert': function (userId, doc) {
return true;
}
});
}
Messages = new Mongo.Collection("messages");
Rooms = new Mongo.Collection("rooms");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment