Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/services/UniversalNotificationService.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,8 @@ function* handle(message) {
case constants.SETTINGS_EMAIL_SERVICE_ID:
if (validator(data, emailSchema)) {
// find missing emails and userIds
// temporary disable email notification on PROD until we get good working for email templates
// yield completeMissingFields(data.details, true, true);
// yield tcApiHelper.notifyUserViaEmail(data);
yield completeMissingFields(data.details, true, true);
yield tcApiHelper.notifyUserViaEmail(data);
}
break;
case constants.SETTINGS_SLACK_SERVICE_ID:
Expand Down