Skip to content

Commit 79a75ed

Browse files
authored
Use distinct email addresses for each of the sample accounts (#499)
1 parent 9c00d36 commit 79a75ed

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

journalism_workflow/load_sample_data.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def load(workflow_version):
3939
'is_active': True,
4040
'is_superuser': False,
4141
'is_staff': False,
42-
'email': '[email protected]',
42+
'email': 'noreply-journalism1@example.org',
4343
'password': 'editor',
4444
'certifications': [
4545
('editor', WorkerCertification.Role.ENTRY_LEVEL),
@@ -53,7 +53,7 @@ def load(workflow_version):
5353
'is_superuser': False,
5454
'is_staff': False,
5555
'password': 'reporter',
56-
'email': '[email protected]',
56+
'email': 'noreply-journalism2@example.org',
5757
'certifications': [
5858
('reporter', WorkerCertification.Role.ENTRY_LEVEL),
5959
]
@@ -66,7 +66,7 @@ def load(workflow_version):
6666
'is_superuser': False,
6767
'is_staff': False,
6868
'password': 'reporter',
69-
'email': '[email protected]',
69+
'email': 'noreply-journalism3@example.org',
7070
'certifications': [
7171
('reporter', WorkerCertification.Role.ENTRY_LEVEL),
7272
('reporter', WorkerCertification.Role.REVIEWER),
@@ -80,7 +80,7 @@ def load(workflow_version):
8080
'is_superuser': False,
8181
'is_staff': False,
8282
'password': 'photographer',
83-
'email': '[email protected]',
83+
'email': 'noreply-journalism4@example.org',
8484
'certifications': [
8585
('photographer', WorkerCertification.Role.ENTRY_LEVEL),
8686
]
@@ -93,7 +93,7 @@ def load(workflow_version):
9393
'is_superuser': False,
9494
'is_staff': False,
9595
'password': 'photographer',
96-
'email': '[email protected]',
96+
'email': 'noreply-journalism5@example.org',
9797
'certifications': [
9898
('photographer', WorkerCertification.Role.ENTRY_LEVEL),
9999
('photographer', WorkerCertification.Role.REVIEWER),
@@ -107,7 +107,7 @@ def load(workflow_version):
107107
'is_superuser': False,
108108
'is_staff': False,
109109
'password': 'copy-editor',
110-
'email': '[email protected]',
110+
'email': 'noreply-journalism6@example.org',
111111
'certifications': [
112112
('copy_editor', WorkerCertification.Role.ENTRY_LEVEL),
113113
]

simple_workflow/load_sample_data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def load(workflow_version):
1313
'is_active': True,
1414
'is_superuser': False,
1515
'is_staff': False,
16-
'email': '[email protected]'
16+
'email': 'noreply-simple1@example.org'
1717
}
1818
)
1919
user.set_password('demo')

0 commit comments

Comments
 (0)