Skip to content

Instantly share code, notes, and snippets.

@devfoo-one
Last active August 29, 2015 14:10
Show Gist options
  • Save devfoo-one/faa618f082aa64047912 to your computer and use it in GitHub Desktop.
Save devfoo-one/faa618f082aa64047912 to your computer and use it in GitHub Desktop.
Meteor: allow current user to delete his user account
Meteor.users.allow({
remove: function (userId, doc) {
return doc._id === userId;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment