summaryrefslogtreecommitdiffstats
path: root/models/wekanCreator.js
diff options
context:
space:
mode:
authorzebby76 <zebby76@gmail.com>2018-05-01 07:55:41 +0200
committerzebby76 <zebby76@gmail.com>2018-05-01 07:55:41 +0200
commit539c1ab87a098a7ddfd23cdbd663441bd609b73d (patch)
treead95b91805bea32b5d9d91941190ff3807eb13a6 /models/wekanCreator.js
parent359d0b376f203a4d309a3a222d35a16b4ed161e3 (diff)
downloadwekan-539c1ab87a098a7ddfd23cdbd663441bd609b73d.tar.gz
wekan-539c1ab87a098a7ddfd23cdbd663441bd609b73d.tar.bz2
wekan-539c1ab87a098a7ddfd23cdbd663441bd609b73d.zip
Define sort property on swimlanes and lists
Diffstat (limited to 'models/wekanCreator.js')
-rw-r--r--models/wekanCreator.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/models/wekanCreator.js b/models/wekanCreator.js
index aabcc717..4551979b 100644
--- a/models/wekanCreator.js
+++ b/models/wekanCreator.js
@@ -390,7 +390,7 @@ export class WekanCreator {
}
createLists(wekanLists, boardId) {
- wekanLists.forEach((list) => {
+ wekanLists.forEach((list, listIndex) => {
const listToCreate = {
archived: list.archived,
boardId,
@@ -400,6 +400,7 @@ export class WekanCreator {
// we require.
createdAt: this._now(this.createdAt.lists[list.id]),
title: list.title,
+ sort: list.sort ? list.sort : listIndex,
};
const listId = Lists.direct.insert(listToCreate);
Lists.direct.update(listId, {$set: {'updatedAt': this._now()}});
@@ -422,7 +423,7 @@ export class WekanCreator {
}
createSwimlanes(wekanSwimlanes, boardId) {
- wekanSwimlanes.forEach((swimlane) => {
+ wekanSwimlanes.forEach((swimlane, swimlaneIndex) => {
const swimlaneToCreate = {
archived: swimlane.archived,
boardId,
@@ -432,6 +433,7 @@ export class WekanCreator {
// we require.
createdAt: this._now(this.createdAt.swimlanes[swimlane._id]),
title: swimlane.title,
+ sort: swimlane.sort ? swimlane.sort : swimlaneIndex,
};
const swimlaneId = Swimlanes.direct.insert(swimlaneToCreate);
Swimlanes.direct.update(swimlaneId, {$set: {'updatedAt': this._now()}});