diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-24 12:48:29 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-27 08:58:09 -0700 |
commit | 81907fa0aac7757d1c39cafef4da89f8b2bfb417 (patch) | |
tree | d3425faf9b8ce10be04a9ee0aaab8852091841a8 /mediagoblin/auth | |
parent | c6e46c6bd9c616a500ae9395178a2ab57f25baa8 (diff) | |
download | mediagoblin-81907fa0aac7757d1c39cafef4da89f8b2bfb417.tar.lz mediagoblin-81907fa0aac7757d1c39cafef4da89f8b2bfb417.tar.xz mediagoblin-81907fa0aac7757d1c39cafef4da89f8b2bfb417.zip |
moved email_debug_message to gmg/tools/mail
Diffstat (limited to 'mediagoblin/auth')
-rw-r--r-- | mediagoblin/auth/views.py | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/mediagoblin/auth/views.py b/mediagoblin/auth/views.py index 94354933..6a8e9a4c 100644 --- a/mediagoblin/auth/views.py +++ b/mediagoblin/auth/views.py @@ -21,24 +21,13 @@ from mediagoblin import messages, mg_globals from mediagoblin.db.models import User from mediagoblin.tools.response import render_to_response, redirect, render_404 from mediagoblin.tools.translate import pass_to_ugettext as _ +from mediagoblin.tools.mail import email_debug_message from mediagoblin.auth import lib as auth_lib from mediagoblin.auth import forms as auth_forms from mediagoblin.auth.lib import send_fp_verification_email from mediagoblin.auth.tools import send_verification_email from sqlalchemy import or_ -def email_debug_message(request): - """ - If the server is running in email debug mode (which is - the current default), give a debug message to the user - so that they have an idea where to find their email. - """ - if mg_globals.app_config['email_debug_mode']: - # DEBUG message, no need to translate - messages.add_message(request, messages.DEBUG, - u"This instance is running in email debug mode. " - u"The email will be on the console of the server process.") - def register(request): """The registration view. |