Replaced retfun in ssl_login so that it properly redirect to dashboard

This commit is contained in:
Carson Gee
2013-12-12 10:49:20 -05:00
parent 50e2e833a2
commit 93b0357978

View File

@@ -419,7 +419,7 @@ def ssl_login(request):
(_user, email, fullname) = _ssl_dn_extract_info(cert)
retfun = functools.partial(student.views.index, request)
retfun = functools.partial(redirect, '/')
return _external_login_or_signup(
request,
external_id=email,