浏览代码

- Partially #2045 revert, continue.

Thanks to xet7 !
Lauri Ojansivu 6 年之前
父节点
当前提交
167197fcda
共有 4 个文件被更改,包括 0 次插入31 次删除
  1. 0 1
      .meteor/packages
  2. 0 1
      .meteor/versions
  3. 0 28
      server/publications/pub-users.js
  4. 0 1
      server/publications/users.js

+ 0 - 1
.meteor/packages

@@ -89,4 +89,3 @@ mquandalle:moment
 msavin:usercache
 wekan:wekan-ldap
 wekan:accounts-cas
-msavin:sjobs

+ 0 - 1
.meteor/versions

@@ -117,7 +117,6 @@ mquandalle:jquery-ui-drag-drop-sort@0.2.0
 mquandalle:moment@1.0.1
 mquandalle:mousetrap-bindglobal@0.0.1
 mquandalle:perfect-scrollbar@0.6.5_2
-msavin:sjobs@3.0.6
 msavin:usercache@1.0.0
 npm-bcrypt@0.9.3
 npm-mongo@2.2.33

+ 0 - 28
server/publications/pub-users.js

@@ -1,28 +0,0 @@
-Meteor.publish('user-miniprofile', function(userId) {
-  check(userId, String);
-
-  return Users.find(userId, {
-    fields: {
-      'username': 1,
-      'profile.fullname': 1,
-      'profile.avatarUrl': 1,
-    },
-  });
-});
-
-Meteor.publish('user-admin', function() {
-  return Meteor.users.find(this.userId, {
-    fields: {
-      isAdmin: 1,
-    },
-  });
-});
-
-Meteor.publish('user-authenticationMethod', function(match) {
-  check(match, String);
-  return Users.find({$or: [{_id: match}, {email: match}, {username: match}]}, {
-    fields: {
-      'authenticationMethod': 1,
-    },
-  });
-});

+ 0 - 1
server/publications/users.js

@@ -22,7 +22,6 @@ Meteor.publish('user-authenticationMethod', function(match) {
   check(match, String);
   return Users.find({$or: [{_id: match}, {email: match}, {username: match}]}, {
     fields: {
-      '_id': 1,
       'authenticationMethod': 1,
     },
   });