Skip to content
Snippets Groups Projects
Commit 9202c1e2 authored by Matthew Mongeau's avatar Matthew Mongeau
Browse files

Redirect to /courses instead of /info

parent 4239a0b3
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ def index(request):
''' Redirects to main page -- info page if user authenticated, or marketing if not
'''
if settings.COURSEWARE_ENABLED and request.user.is_authenticated():
return redirect('/info')
return redirect('/courses')
else:
csrf_token = csrf(request)['csrf_token']
# TODO: Clean up how 'error' is done.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment