summaryrefslogtreecommitdiffstats
path: root/models/boards.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/boards.js')
-rw-r--r--models/boards.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/models/boards.js b/models/boards.js
index c7f93022..85a7558c 100644
--- a/models/boards.js
+++ b/models/boards.js
@@ -409,18 +409,20 @@ Boards.helpers({
},
lists() {
- const enabled = Meteor.user().hasShowDesktopDragHandles();
- return enabled ? this.draggableLists() : this.newestLists();
+ const enabled = Meteor.user().hasSortBy();
+ return enabled ? this.newestLists() : this.draggableLists();
},
newestLists() {
// sorted lists from newest to the oldest, by its creation date or its cards' last modification date
+ const value = Meteor.user()._getListSortBy();
+ const sortKey = { starred: -1, [value[0]]: value[1] }; // [["starred",-1],value];
return Lists.find(
{
boardId: this._id,
archived: false,
},
- { sort: { updatedAt: -1 } },
+ { sort: sortKey },
);
},
draggableLists() {