mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
Collapse Lists.
Thanks to xet7 !
This commit is contained in:
parent
f22f470ba4
commit
a601ba542a
9 changed files with 159 additions and 58 deletions
|
@ -61,6 +61,7 @@ Meteor.publishRelations('boards', function() {
|
|||
title: 1,
|
||||
boardId: 1,
|
||||
archived: 1,
|
||||
collapsed: 1,
|
||||
sort: 1
|
||||
}
|
||||
},
|
||||
|
@ -221,7 +222,7 @@ Meteor.publishRelations('board', function(boardId, isArchived) {
|
|||
),
|
||||
function(boardId, board) {
|
||||
this.cursor(ReactiveCache.getLists({ boardId, archived: isArchived }, {}, true));
|
||||
this.cursor(ReactiveCache.getSwimlanes({ boardId, archived: isArchived }, {}, true));
|
||||
this.cursor(ReactiveCache.getSwimlanes({ boardId, collapsed: 1, archived: isArchived }, {}, true));
|
||||
this.cursor(ReactiveCache.getIntegrations({ boardId }, {}, true));
|
||||
this.cursor(ReactiveCache.getCardCommentReactions({ boardId }, {}, true));
|
||||
this.cursor(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue