Skip to content

Commit 9816706

Browse files
authored
Merge pull request #222 from topcoder-platform/hotfix/disalbe-universal-email-notifications
[PROD] [HOTFIX] temporary disable universal email notifications
2 parents ba420ec + 9533d53 commit 9816706

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/services/UniversalNotificationService.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,9 @@ function* handle(message) {
180180
case constants.SETTINGS_EMAIL_SERVICE_ID:
181181
if (validator(data, emailSchema)) {
182182
// find missing emails and userIds
183-
yield completeMissingFields(data.details, true, true);
184-
yield tcApiHelper.notifyUserViaEmail(data);
183+
// temporary disable email notification on PROD until we get good working for email templates
184+
// yield completeMissingFields(data.details, true, true);
185+
// yield tcApiHelper.notifyUserViaEmail(data);
185186
}
186187
break;
187188
case constants.SETTINGS_SLACK_SERVICE_ID:

0 commit comments

Comments
 (0)