Skip to content

Instantly share code, notes, and snippets.

@bradvogel
Created January 11, 2015 04:58
Show Gist options
  • Save bradvogel/9da6fa2836bf6f7e60a0 to your computer and use it in GitHub Desktop.
Save bradvogel/9da6fa2836bf6f7e60a0 to your computer and use it in GitHub Desktop.
test files
Accounts.onLogin(function(e) {
// Do this async so we don't block login.
Meteor.setTimeout(function() {
var userId = e.user._id;
maybeSyncGoogleContacts(userId);
}, 100);
});
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