Skip to content
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.

Commit

Permalink
Merge pull request #5153 from withspectrum/remove-bryn
Browse files Browse the repository at this point in the history
Don't send Bryn too many emails
  • Loading branch information
brianlovin authored Jun 5, 2019
2 parents 7c818ff + bbf3e07 commit 2d0c51b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 31 deletions.
6 changes: 1 addition & 5 deletions hermes/queues/send-admin-active-community-report-email.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,7 @@ export default (
try {
return sendEmail({
templateId: ADMIN_ACTIVE_COMMUNITY_REPORT_TEMPLATE,
to: [
{ email: '[email protected] ' },
{ email: '[email protected] ' },
{ email: '[email protected] ' },
],
to: [{ email: '[email protected] ' }, { email: '[email protected] ' }],
dynamic_template_data: {
subject: `Active Community Report: ${month} ${day}, ${year}`,
data: {
Expand Down
6 changes: 1 addition & 5 deletions hermes/queues/send-admin-community-created-email.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ export default (job: Job<AdminCommunityCreatedEmailJobData>): Promise<void> => {
try {
return sendEmail({
templateId: ADMIN_COMMUNITY_CREATED_TEMPLATE,
to: [
{ email: '[email protected] ' },
{ email: '[email protected] ' },
{ email: '[email protected] ' },
],
to: [{ email: '[email protected] ' }, { email: '[email protected] ' }],
dynamic_template_data: {
subject: `New community: ${community.name}`,
user: {
Expand Down
6 changes: 1 addition & 5 deletions hermes/queues/send-admin-slack-import-email.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,7 @@ export default (job: Job<AdminSlackImportJobData>): Promise<void> => {
try {
return sendEmail({
templateId: ADMIN_SLACK_IMPORT_PROCESSED_TEMPLATE,
to: [
{ email: '[email protected] ' },
{ email: '[email protected] ' },
{ email: '[email protected] ' },
],
to: [{ email: '[email protected] ' }, { email: '[email protected] ' }],
dynamic_template_data: {
subject,
preheader,
Expand Down
6 changes: 1 addition & 5 deletions hermes/queues/send-admin-toxic-content-email.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@ export default (job: Job<AdminToxicContentEmailJobData>): Promise<void> => {
try {
return sendEmail({
templateId: ADMIN_TOXIC_MESSAGE_TEMPLATE,
to: [
{ email: '[email protected] ' },
{ email: '[email protected] ' },
{ email: '[email protected] ' },
],
to: [{ email: '[email protected] ' }, { email: '[email protected] ' }],
dynamic_template_data: {
subject,
preheader: text,
Expand Down
6 changes: 1 addition & 5 deletions hermes/queues/send-admin-user-reported-email.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,7 @@ export default async (
try {
return sendEmail({
templateId: ADMIN_USER_REPORTED_TEMPLATE,
to: [
{ email: '[email protected] ' },
{ email: '[email protected] ' },
{ email: '[email protected] ' },
],
to: [{ email: '[email protected] ' }, { email: '[email protected] ' }],
dynamic_template_data: {
subject,
preheader,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@ export default (job: Job<AdminUserSpammingThreadsJobData>): Promise<void> => {
try {
return sendEmail({
templateId: ADMIN_USER_SPAMMING_THREADS_NOTIFICATION_TEMPLATE,
to: [
{ email: '[email protected] ' },
{ email: '[email protected] ' },
{ email: '[email protected] ' },
],
to: [{ email: '[email protected] ' }, { email: '[email protected] ' }],
dynamic_template_data: {
subject,
preheader,
Expand Down
2 changes: 1 addition & 1 deletion src/components/error/BlueScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const BlueScreen = () => {
<ViewError
heading={'Something went wrong'}
subheading={
'Sorry about the technical issues. Brian, Bryn and Max have been notified of the problem and should resolve it soon.'
'Sorry about the technical issues. Brian and Max have been notified of the problem and should resolve it soon.'
}
refresh
/>
Expand Down

0 comments on commit 2d0c51b

Please sign in to comment.