Skip to content

Instantly share code, notes, and snippets.

View luiseduardobrito's full-sized avatar

Luis Eduardo Brito luiseduardobrito

  • São Paulo, Brazil
View GitHub Profile
@luiseduardobrito
luiseduardobrito / accounts.js
Last active June 19, 2017 15:09 — forked from mackbrowne/gist:30317eba75d13683566ead357b52bbce
Accounts Meteor Hack for Linking social accounts (Facebook, Twitter, etc)
Accounts.onCreateUser((options, user) => {
user.city = null;
user.networks = [];
user.attending = [];
if (user.profile == null) {
user.profile = {};
}
if (user.services != null) {
var service = _.keys(user.services)[0];