diff options
author | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2019-01-22 23:35:12 +0100 |
---|---|---|
committer | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2019-01-24 16:51:06 +0100 |
commit | 6e9bad57723919dc3fd63a5748902e9049320603 (patch) | |
tree | eede4ef6e004aed94909ddf02a48ca9bd97742a0 /models | |
parent | 5769d438a05d01bd5f35cd5830b7ad3c03a21ed2 (diff) | |
download | wekan-6e9bad57723919dc3fd63a5748902e9049320603.tar.gz wekan-6e9bad57723919dc3fd63a5748902e9049320603.tar.bz2 wekan-6e9bad57723919dc3fd63a5748902e9049320603.zip |
IFTTT: card colors: add an actual white entry
To unset the color through the IFTTT, we need a white entry.
However, we do not want to show the white enry in the hamburger
`Set Color` entry.
We can also give the `white` capability to the API, it won't hurt
and be more straightforward.
Diffstat (limited to 'models')
-rw-r--r-- | models/cards.js | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/models/cards.js b/models/cards.js index c5d9bf05..9b32e89a 100644 --- a/models/cards.js +++ b/models/cards.js @@ -69,7 +69,7 @@ Cards.attachSchema(new SimpleSchema({ type: String, optional: true, allowedValues: [ - 'green', 'yellow', 'orange', 'red', 'purple', + 'white', 'green', 'yellow', 'orange', 'red', 'purple', 'blue', 'sky', 'lime', 'pink', 'black', 'silver', 'peachpuff', 'crimson', 'plum', 'darkgreen', 'slateblue', 'magenta', 'gold', 'navy', 'gray', @@ -1571,13 +1571,16 @@ if (Meteor.isServer) { * * @description Edit a card * - * The color has to be chosen between `green`, `yellow`, `orange`, `red`, - * `purple`, `blue`, `sky`, `lime`, `pink`, `black`, `silver`, `peachpuff`, - * `crimson`, `plum`, `darkgreen`, `slateblue`, `magenta`, `gold`, `navy`, - * `gray`, `saddlebrown`, `paleturquoise`, `mistyrose`, `indigo`: + * The color has to be chosen between `white`, `green`, `yellow`, `orange`, + * `red`, `purple`, `blue`, `sky`, `lime`, `pink`, `black`, `silver`, + * `peachpuff`, `crimson`, `plum`, `darkgreen`, `slateblue`, `magenta`, + * `gold`, `navy`, `gray`, `saddlebrown`, `paleturquoise`, `mistyrose`, + * `indigo`: * * <img src="/card-colors.png" width="40%" alt="Wekan card colors" /> * + * Note: setting the color to white has the same effect than removing it. + * * @param {string} boardId the board ID of the card * @param {string} list the list ID of the card * @param {string} cardId the ID of the card |