From f551d071f0998fa719725637b3aad21cfdc5dd12 Mon Sep 17 00:00:00 2001 From: Ross Date: Fri, 9 Jan 2026 20:39:27 +0000 Subject: [PATCH] Remove login requirement for exam_toggle_flag function to allow access without authentication. --- physics/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/physics/views.py b/physics/views.py index 77eca3a5..23b02b2b 100644 --- a/physics/views.py +++ b/physics/views.py @@ -503,7 +503,7 @@ def exam_take_fragment(request, pk: int, sk: int, cid: str | None = None, passco ) -@login_required +#@login_required def exam_toggle_flag(request, pk: int, sk: int, cid: str | None = None, passcode: str | None = None): """Toggle the flagged state for the current user's answer to a question.