1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Change example ADMINS to show a tuple

Fixes #6919
This commit is contained in:
Brian Candler
2021-08-09 07:37:46 +01:00
parent f23dc2d405
commit b04f262642

View File

@ -69,7 +69,7 @@ SECRET_KEY = ''
# Specify one or more name and email address tuples representing NetBox administrators. These people will be notified of # Specify one or more name and email address tuples representing NetBox administrators. These people will be notified of
# application errors (assuming correct email settings are provided). # application errors (assuming correct email settings are provided).
ADMINS = [ ADMINS = [
# ['John Doe', 'jdoe@example.com'], # ('John Doe', 'jdoe@example.com'),
] ]
# URL schemes that are allowed within links in NetBox # URL schemes that are allowed within links in NetBox