浏览代码

Fix Missing trailing comma in users.js

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

+ 1 - 1
models/users.js

@@ -468,7 +468,7 @@ if (Meteor.isServer) {
     const invitationCode = InvitationCodes.findOne({
       code: options.profile.invitationcode,
       email: options.email,
-      valid: true
+      valid: true,
     });
     if (!invitationCode) {
       throw new Meteor.Error('error-invitation-code-not-exist', 'The invitation code doesn\'t exist');