Skip to content

Commit

Permalink
Merge pull request #63 from tjmlabs/admin-bug
Browse files Browse the repository at this point in the history
admin bug
  • Loading branch information
Jonathan-Adly authored Nov 6, 2024
2 parents 33a8065 + 233e55f commit a749378
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
ALLOWED_HOSTS = ["*"]

# Admin definition
ADMINS = env.list("DJANGO_ADMINS", default=[("Dummy Name", "[email protected]")])
DJANGO_ADMINS = env.list("DJANGO_ADMINS", default=["Dummy Name:[email protected]"])
# DJANGO_ADMINS=Blake:[email protected],Alice:[email protected]
ADMINS = [tuple(x.split(":")) for x in DJANGO_ADMINS]


# Application definition
Expand Down

0 comments on commit a749378

Please sign in to comment.