mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
Fix Missing trailing comma in users.js
This commit is contained in:
parent
fa1d8cd5ef
commit
b4c3e02b75
1 changed files with 1 additions and 1 deletions
|
|
@ -468,7 +468,7 @@ if (Meteor.isServer) {
|
||||||
const invitationCode = InvitationCodes.findOne({
|
const invitationCode = InvitationCodes.findOne({
|
||||||
code: options.profile.invitationcode,
|
code: options.profile.invitationcode,
|
||||||
email: options.email,
|
email: options.email,
|
||||||
valid: true
|
valid: true,
|
||||||
});
|
});
|
||||||
if (!invitationCode) {
|
if (!invitationCode) {
|
||||||
throw new Meteor.Error('error-invitation-code-not-exist', 'The invitation code doesn\'t exist');
|
throw new Meteor.Error('error-invitation-code-not-exist', 'The invitation code doesn\'t exist');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue