minor fixes + add notes

This commit is contained in:
zandercymatics 2024-08-23 10:46:22 -06:00
parent 7fb186e24b
commit c1378acd2c
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
4 changed files with 51 additions and 4 deletions

View file

@ -241,7 +241,8 @@ class UserFixture:
},
]
# Additional emails to add to the AllowedEmail whitelist
# Additional emails to add to the AllowedEmail whitelist.
# The format should be as follows: ["email@igorville.gov", "email2@igorville.gov"]
ADDITIONAL_ALLOWED_EMAILS = [
"zander.adkinson@ecstech.com"
]
@ -286,7 +287,7 @@ class UserFixture:
else:
first_name = user_data.get("first_name")
last_name = user_data.get("last_name")
logger.warning(f"Could not load email for {first_name} {last_name}: No email exists.")
logger.warning(f"Could add email to whitelist for {first_name} {last_name}: No email exists.")
# Load additional emails
for email in additional_emails: