Skip to content

Instantly share code, notes, and snippets.

@bradvogel
Created January 11, 2015 04:19
Show Gist options
  • Save bradvogel/ba4a1e5b6758792a8eae to your computer and use it in GitHub Desktop.
Save bradvogel/ba4a1e5b6758792a8eae to your computer and use it in GitHub Desktop.
test gist
Accounts.onLogin(function(e) {
// Do this async so we don't block login.
Meteor.setTimeout(function() {
var userId = e.user._id;
maybeSyncGoogleContacts(userId);
}, 100);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment