瀏覽代碼

Merge branch 'couscous3-patch-1' into devel

Lauri Ojansivu 7 年之前
父節點
當前提交
c0dbb79ac9
共有 2 個文件被更改,包括 9 次插入0 次删除
  1. 8 0
      CHANGELOG.md
  2. 1 0
      models/cards.js

+ 8 - 0
CHANGELOG.md

@@ -1,3 +1,11 @@
+# Upcoming Wekan release
+
+This release adds the following new features:
+
+- [Add swimlaneId to POST /api/boards/:boardId/lists/:listId/cards route](https://github.com/wekan/wekan/commit/ee0f42eeb1b10107bd8fc38cdefbdbc4f3fde108).
+
+Thanks to GitHub user couscous3 for contributions.
+
 # v0.75 2018-02-16 Wekan release
 
 This release adds the following new features:

+ 1 - 0
models/cards.js

@@ -472,6 +472,7 @@ if (Meteor.isServer) {
         listId: paramListId,
         description: req.body.description,
         userId: req.body.authorId,
+        swimlaneId: req.body.swimlaneId,
         sort: 0,
         members: [req.body.authorId],
       });