fix: Uncomment def video_chapters in django

This commit is contained in:
Yiannis Christodoulou 2025-07-28 01:59:15 +03:00
parent 8a87aad647
commit bce3f9c75d

View File

@ -247,8 +247,10 @@ def history(request):
@csrf_exempt @csrf_exempt
@login_required @login_required
def video_chapters(request, friendly_token): def video_chapters(request, friendly_token):
# this is not ready... # TODO: Enable chapter saving functionality
return False # return False # TODO: Remove this
# Enable chapter saving functionality
if not request.method == "POST": if not request.method == "POST":
return HttpResponseRedirect("/") return HttpResponseRedirect("/")