mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
Do not include archived lists in global search help
This commit is contained in:
parent
103cfb936d
commit
39b4ada26d
1 changed files with 7 additions and 2 deletions
|
@ -378,8 +378,13 @@ Meteor.methods({
|
|||
// my lists
|
||||
return _.uniq(
|
||||
Lists.find(
|
||||
{ boardId: { $in: Boards.userBoardIds(this.userId) } },
|
||||
{ fields: { title: 1 } },
|
||||
{
|
||||
boardId: { $in: Boards.userBoardIds(this.userId) },
|
||||
archived: false,
|
||||
},
|
||||
{
|
||||
fields: { title: 1 },
|
||||
},
|
||||
)
|
||||
.fetch()
|
||||
.map(list => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue