From 3ba4ab1a46820c5fe6ccf1c4592a780f04c6c1b6 Mon Sep 17 00:00:00 2001 From: 0x29a Date: Wed, 23 Oct 2024 14:40:01 +0200 Subject: [PATCH] feat: allow Bearer auth for sequence metadata --- openedx/core/djangoapps/courseware_api/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openedx/core/djangoapps/courseware_api/views.py b/openedx/core/djangoapps/courseware_api/views.py index 7f56133b3459..b347f91f60cf 100644 --- a/openedx/core/djangoapps/courseware_api/views.py +++ b/openedx/core/djangoapps/courseware_api/views.py @@ -583,6 +583,7 @@ class SequenceMetadata(DeveloperErrorViewMixin, APIView): authentication_classes = ( JwtAuthentication, + BearerAuthenticationAllowInactiveUser, SessionAuthenticationAllowInactiveUser, )