remove tailing commas

reviewable/pr982/r1
Stephen Moloney 8 years ago
parent 40197ed981
commit a314d608a2
  1. 8
      server/publications/users.js

@ -5,15 +5,15 @@ Meteor.publish('user-miniprofile', function(userId) {
fields: {
'username': 1,
'profile.fullname': 1,
'profile.avatarUrl': 1,
},
'profile.avatarUrl': 1
}
});
});
Meteor.publish('user-admin', function() {
return Meteor.users.find(this.userId, {
fields: {
isAdmin: 1,
},
isAdmin: 1
}
});
});

Loading…
Cancel
Save