Merge pull request #6 from erynofwales/bug/test-cookie
Set test cookie even if cookies are disabled
This commit is contained in:
commit
6d9f67d3bf
1 changed files with 4 additions and 0 deletions
4
views.py
4
views.py
|
@ -23,6 +23,10 @@ def login(request):
|
||||||
request.session.delete_test_cookie()
|
request.session.delete_test_cookie()
|
||||||
return redirect('/login/github/')
|
return redirect('/login/github/')
|
||||||
else:
|
else:
|
||||||
|
# During development, I've landed here a lot, despite having cookies
|
||||||
|
# enabled. So, set the test cookie so that trying to login from here
|
||||||
|
# actually works.
|
||||||
|
request.session.set_test_cookie()
|
||||||
# Render an error -- fix your damn cookies!
|
# Render an error -- fix your damn cookies!
|
||||||
return render_to_response('login.html',
|
return render_to_response('login.html',
|
||||||
{ 'error': "Fix your damn cookies!" })
|
{ 'error': "Fix your damn cookies!" })
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue