User schema wip

This commit is contained in:
vjrj 2017-12-13 22:21:20 +01:00
parent 8b8b145360
commit 633e552b31
3 changed files with 135 additions and 2 deletions

View file

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