浏览代码

Try to fix: Users who register with an invitation code can't see lists/cards.
Please test.

Thanks to andresmanelli !

Related #1610

Lauri Ojansivu 7 年之前
父节点
当前提交
c4b898633e
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      models/users.js

+ 1 - 0
models/users.js

@@ -495,6 +495,7 @@ if (Meteor.isServer) {
       throw new Meteor.Error('error-invitation-code-not-exist', 'The invitation code doesn\'t exist');
     } else {
       user.profile = {icode: options.profile.invitationcode};
+      user.profile.boardView = 'board-view-lists';
     }
 
     return user;