- [Hide Subtask boards from All Boards](https://github.com/wekan/wekan/issues/1990).

- Order All Boards by Starred, Color and Title.

Thanks to xet7 !

Closes #1990,
Related #641
This commit is contained in:
Lauri Ojansivu 2019-03-08 09:41:36 +02:00
parent 8783983945
commit 8568728152

View file

@ -25,8 +25,9 @@ BlazeComponent.extendComponent({
archived: false,
'members.userId': Meteor.userId(),
type: 'board',
subtasksDefaultListId: null,
}, {
sort: ['title'],
sort: { stars: -1, color: 1, title: 1 },
});
},