mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 05:27:14 -04:00
Fix lint errors.
This commit is contained in:
parent
3edef95c4e
commit
e611685e50
1 changed files with 2 additions and 2 deletions
|
@ -78,8 +78,8 @@ Meteor.publishRelations('board', function(boardId, isArchived) {
|
|||
],
|
||||
// Sort required to ensure oplog usage
|
||||
}, { limit: 1, sort: { _id: 1 } }), function(boardId, board) {
|
||||
this.cursor(Lists.find({ boardId: boardId, archived: isArchived }));
|
||||
this.cursor(Swimlanes.find({ boardId: boardId, archived: isArchived }));
|
||||
this.cursor(Lists.find({ boardId, archived: isArchived }));
|
||||
this.cursor(Swimlanes.find({ boardId, archived: isArchived }));
|
||||
this.cursor(Integrations.find({ boardId }));
|
||||
this.cursor(CustomFields.find({ boardIds: {$in: [boardId]} }, { sort: { name: 1 } }));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue