summaryrefslogtreecommitdiffstats
path: root/client/components/rules/actions/mailActions.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-09-16 01:50:36 +0300
committerLauri Ojansivu <x@xet7.org>2018-09-16 01:50:36 +0300
commitdf84a2be9adb2eeee25141588a80d4523d38675d (patch)
treed7defe25d43e41a76d9d11461cbc539ad01598c2 /client/components/rules/actions/mailActions.js
parentb3a752ef34cb1cd324f7e2b55bebef81fb2281c3 (diff)
downloadwekan-df84a2be9adb2eeee25141588a80d4523d38675d.tar.gz
wekan-df84a2be9adb2eeee25141588a80d4523d38675d.tar.bz2
wekan-df84a2be9adb2eeee25141588a80d4523d38675d.zip
Fix lint errors.
Diffstat (limited to 'client/components/rules/actions/mailActions.js')
-rw-r--r--client/components/rules/actions/mailActions.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/client/components/rules/actions/mailActions.js b/client/components/rules/actions/mailActions.js
index dae7d08d..40cbc280 100644
--- a/client/components/rules/actions/mailActions.js
+++ b/client/components/rules/actions/mailActions.js
@@ -15,21 +15,21 @@ BlazeComponent.extendComponent({
const boardId = Session.get('currentBoard');
const desc = Utils.getTriggerActionDesc(event, this);
const actionId = Actions.insert({
- actionType: "sendEmail",
- "emailTo": emailTo,
- "emailSubject": emailSubject,
- "emailMsg": emailMsg,
- "boardId": boardId,
- "desc": desc
+ actionType: 'sendEmail',
+ emailTo,
+ emailSubject,
+ emailMsg,
+ boardId,
+ desc,
});
Rules.insert({
title: ruleName,
- triggerId: triggerId,
- actionId: actionId,
- "boardId": boardId
+ triggerId,
+ actionId,
+ boardId,
});
},
}];
},
-}).register('mailActions'); \ No newline at end of file
+}).register('mailActions');