diff options
author | guillaume <guillaume.cassou@supinfo.com> | 2018-10-11 16:46:59 +0200 |
---|---|---|
committer | guillaume <guillaume.cassou@supinfo.com> | 2018-10-11 16:46:59 +0200 |
commit | 23a35d9707f82391c74afbfbe47173815646e589 (patch) | |
tree | fde77dfe2aa703f74f99a17f3c63991d9cd28c39 | |
parent | b925b8e74d8cb55edcb570819cffcb9f0dc061fc (diff) | |
download | wekan-23a35d9707f82391c74afbfbe47173815646e589.tar.gz wekan-23a35d9707f82391c74afbfbe47173815646e589.tar.bz2 wekan-23a35d9707f82391c74afbfbe47173815646e589.zip |
improve notifications
-rw-r--r-- | server/notifications/email.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/server/notifications/email.js b/server/notifications/email.js index fc05456f..b2b7fab8 100644 --- a/server/notifications/email.js +++ b/server/notifications/email.js @@ -2,7 +2,6 @@ Meteor.startup(() => { Notifications.subscribe('email', (user, title, description, params) => { // add quote to make titles easier to read in email text - console.log('ICI', user, title, description, params); const quoteParams = _.clone(params); ['card', 'list', 'oldList', 'board', 'comment'].forEach((key) => { if (quoteParams[key]) quoteParams[key] = `"${params[key]}"`; |