add support for profile

This commit is contained in:
cleverbeagle 2017-05-28 14:04:24 -05:00
parent 779e3ee978
commit 252ebf50cc
7 changed files with 268 additions and 1 deletions

View file

@ -0,0 +1,10 @@
import { Meteor } from 'meteor/meteor';
Meteor.publish('users.editProfile', function usersProfile() {
return Meteor.users.find(this.userId, {
fields: {
emails: 1,
profile: 1,
},
});
});