log a previously logged in user when switched to no_auth mode

This commit is contained in:
Rodney Ewing
2013-05-17 10:50:46 -07:00
parent d93cd2684b
commit c9dec8b3cc
2 changed files with 10 additions and 1 deletions

View File

@@ -76,3 +76,9 @@ def check_auth_enabled():
return False
else:
return True
def no_auth_logout(request):
"""Log out the user if in no_auth mode"""
if not mg_globals.app.auth:
request.session.delete()