mirror of
https://github.com/wekan/wekan.git
synced 2026-03-07 14:20:15 +01:00
Merge branch 'edge' into edge
This commit is contained in:
commit
50edffee47
67 changed files with 543 additions and 247 deletions
|
|
@ -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);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ Meteor.publish('people', function(limit) {
|
|||
'emails': 1,
|
||||
'createdAt': 1,
|
||||
'loginDisabled': 1,
|
||||
'authenticationMethod': 1
|
||||
'authenticationMethod': 1,
|
||||
},
|
||||
});
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue