diff options
author | Andrés Manelli <andresmanelli@gmail.com> | 2019-03-18 22:49:09 +0100 |
---|---|---|
committer | Andrés Manelli <andresmanelli@gmail.com> | 2019-03-20 23:32:52 +0100 |
commit | ef6054b8597cf52984865ccbe9f05c1838ceccf0 (patch) | |
tree | c49b1c871607b158d6d6a49b305b9aed8e4c1ce5 /models | |
parent | 1046976c08f54100aad600f9071f8b747c8e55f9 (diff) | |
download | wekan-ef6054b8597cf52984865ccbe9f05c1838ceccf0.tar.gz wekan-ef6054b8597cf52984865ccbe9f05c1838ceccf0.tar.bz2 wekan-ef6054b8597cf52984865ccbe9f05c1838ceccf0.zip |
Fix #2268
Diffstat (limited to 'models')
-rw-r--r-- | models/cards.js | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/models/cards.js b/models/cards.js index 2bf83825..be7e2b77 100644 --- a/models/cards.js +++ b/models/cards.js @@ -1032,38 +1032,6 @@ Cards.mutations({ }; }, - setTitle(title) { - return { - $set: { - title, - }, - }; - }, - - setDescription(description) { - return { - $set: { - description, - }, - }; - }, - - setRequestedBy(requestedBy) { - return { - $set: { - requestedBy, - }, - }; - }, - - setAssignedBy(assignedBy) { - return { - $set: { - assignedBy, - }, - }; - }, - move(boardId, swimlaneId, listId, sort) { // Copy Custom Fields if (this.boardId !== boardId) { |