Skip to content

Instantly share code, notes, and snippets.

@varavut
Last active January 24, 2016 12:24
Show Gist options
  • Save varavut/2f5c43158d874548918f to your computer and use it in GitHub Desktop.
Save varavut/2f5c43158d874548918f to your computer and use it in GitHub Desktop.
if (Meteor.isServer) {
Threads.allow({
remove: function (userId, doc) {
if(!userId)
throw new Meteor.Error('Unauthorized', 'Please login before perform an action');
return result = doc.owner === userId;
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment