Merge branch 'edge' into edge

This commit is contained in:
Akuket 2018-10-16 11:46:21 +02:00 committed by GitHub
commit 50edffee47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
67 changed files with 543 additions and 247 deletions

View file

@ -344,9 +344,9 @@ Migrations.add('remove-tag', () => {
});
Migrations.add('remove-customFields-references-broken', () => {
Cards.update(
{'customFields.$value': null},
{$pull: {customFields: {value: null}}},
noValidateMulti,
);
});
Cards.update({'customFields.$value': null},
{ $pull: {
customFields: {value: null},
},
}, noValidateMulti);
});

View file

@ -17,7 +17,7 @@ Meteor.publish('people', function(limit) {
'emails': 1,
'createdAt': 1,
'loginDisabled': 1,
'authenticationMethod': 1
'authenticationMethod': 1,
},
});
} else {