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

Commit 2d0c51b

Browse files
authored
Merge pull request #5153 from withspectrum/remove-bryn
Don't send Bryn too many emails
2 parents 7c818ff + bbf3e07 commit 2d0c51b

7 files changed

+7
-31
lines changed

hermes/queues/send-admin-active-community-report-email.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,7 @@ export default (
3434
try {
3535
return sendEmail({
3636
templateId: ADMIN_ACTIVE_COMMUNITY_REPORT_TEMPLATE,
37-
to: [
38-
{ email: 'brian@spectrum.chat ' },
39-
{ email: 'max@spectrum.chat ' },
40-
{ email: 'bryn@spectrum.chat ' },
41-
],
37+
to: [{ email: 'brian@spectrum.chat ' }, { email: 'max@spectrum.chat ' }],
4238
dynamic_template_data: {
4339
subject: `Active Community Report: ${month} ${day}, ${year}`,
4440
data: {

hermes/queues/send-admin-community-created-email.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ export default (job: Job<AdminCommunityCreatedEmailJobData>): Promise<void> => {
1515
try {
1616
return sendEmail({
1717
templateId: ADMIN_COMMUNITY_CREATED_TEMPLATE,
18-
to: [
19-
{ email: 'brian@spectrum.chat ' },
20-
{ email: 'max@spectrum.chat ' },
21-
{ email: 'bryn@spectrum.chat ' },
22-
],
18+
to: [{ email: 'brian@spectrum.chat ' }, { email: 'max@spectrum.chat ' }],
2319
dynamic_template_data: {
2420
subject: `New community: ${community.name}`,
2521
user: {

hermes/queues/send-admin-slack-import-email.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ export default (job: Job<AdminSlackImportJobData>): Promise<void> => {
2020
try {
2121
return sendEmail({
2222
templateId: ADMIN_SLACK_IMPORT_PROCESSED_TEMPLATE,
23-
to: [
24-
{ email: 'brian@spectrum.chat ' },
25-
{ email: 'max@spectrum.chat ' },
26-
{ email: 'bryn@spectrum.chat ' },
27-
],
23+
to: [{ email: 'brian@spectrum.chat ' }, { email: 'max@spectrum.chat ' }],
2824
dynamic_template_data: {
2925
subject,
3026
preheader,

hermes/queues/send-admin-toxic-content-email.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,7 @@ export default (job: Job<AdminToxicContentEmailJobData>): Promise<void> => {
2727
try {
2828
return sendEmail({
2929
templateId: ADMIN_TOXIC_MESSAGE_TEMPLATE,
30-
to: [
31-
{ email: 'brian@spectrum.chat ' },
32-
{ email: 'max@spectrum.chat ' },
33-
{ email: 'bryn@spectrum.chat ' },
34-
],
30+
to: [{ email: 'brian@spectrum.chat ' }, { email: 'max@spectrum.chat ' }],
3531
dynamic_template_data: {
3632
subject,
3733
preheader: text,

hermes/queues/send-admin-user-reported-email.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,7 @@ export default async (
2626
try {
2727
return sendEmail({
2828
templateId: ADMIN_USER_REPORTED_TEMPLATE,
29-
to: [
30-
{ email: 'brian@spectrum.chat ' },
31-
{ email: 'max@spectrum.chat ' },
32-
{ email: 'bryn@spectrum.chat ' },
33-
],
29+
to: [{ email: 'brian@spectrum.chat ' }, { email: 'max@spectrum.chat ' }],
3430
dynamic_template_data: {
3531
subject,
3632
preheader,

hermes/queues/send-admin-user-spamming-threads-notification-email.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,7 @@ export default (job: Job<AdminUserSpammingThreadsJobData>): Promise<void> => {
3636
try {
3737
return sendEmail({
3838
templateId: ADMIN_USER_SPAMMING_THREADS_NOTIFICATION_TEMPLATE,
39-
to: [
40-
{ email: 'brian@spectrum.chat ' },
41-
{ email: 'max@spectrum.chat ' },
42-
{ email: 'bryn@spectrum.chat ' },
43-
],
39+
to: [{ email: 'brian@spectrum.chat ' }, { email: 'max@spectrum.chat ' }],
4440
dynamic_template_data: {
4541
subject,
4642
preheader,

src/components/error/BlueScreen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const BlueScreen = () => {
88
<ViewError
99
heading={'Something went wrong'}
1010
subheading={
11-
'Sorry about the technical issues. Brian, Bryn and Max have been notified of the problem and should resolve it soon.'
11+
'Sorry about the technical issues. Brian and Max have been notified of the problem and should resolve it soon.'
1212
}
1313
refresh
1414
/>

0 commit comments

Comments
 (0)