Commit 3d87dd8c by John Jarvis

Merge pull request #551 from edx/jarv/remove-ADMINS

changing default ADMINS to an empty tuple
parents 2ad78d94 b93e1985
...@@ -176,9 +176,7 @@ EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' ...@@ -176,9 +176,7 @@ EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
DEFAULT_FROM_EMAIL = 'registration@edx.org' DEFAULT_FROM_EMAIL = 'registration@edx.org'
DEFAULT_FEEDBACK_EMAIL = 'feedback@edx.org' DEFAULT_FEEDBACK_EMAIL = 'feedback@edx.org'
SERVER_EMAIL = 'devops@edx.org' SERVER_EMAIL = 'devops@edx.org'
ADMINS = ( ADMINS = ()
('edX Admins', 'admin@edx.org'),
)
MANAGERS = ADMINS MANAGERS = ADMINS
# Static content # Static content
......
...@@ -355,9 +355,7 @@ SERVER_EMAIL = 'devops@edx.org' ...@@ -355,9 +355,7 @@ SERVER_EMAIL = 'devops@edx.org'
TECH_SUPPORT_EMAIL = 'technical@edx.org' TECH_SUPPORT_EMAIL = 'technical@edx.org'
CONTACT_EMAIL = 'info@edx.org' CONTACT_EMAIL = 'info@edx.org'
BUGS_EMAIL = 'bugs@edx.org' BUGS_EMAIL = 'bugs@edx.org'
ADMINS = ( ADMINS = ()
('edX Admins', 'admin@edx.org'),
)
MANAGERS = ADMINS MANAGERS = ADMINS
# Static content # Static content
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment