Commit a63d6a70 by Greg Price

Require login for followed_threads

Without the login_required decorator, an error would occur, causing a
500 to be returned. This fixes FOR-155.
parent 71a394c3
......@@ -371,6 +371,7 @@ def user_profile(request, course_id, user_id):
raise Http404
@login_required
def followed_threads(request, course_id, user_id):
course = get_course_with_access(request.user, course_id, 'load_forum')
try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment