From 948d6351b675b791624e2bff28b2628255c3aac8 Mon Sep 17 00:00:00 2001 From: jawad khan Date: Wed, 3 Mar 2021 18:39:42 +0500 Subject: [PATCH] LEARNER-8251 - Added BearerAuthenticationAllowInactiveUser in courseware view (#26829) Added BearerAuthenticationAllowInactiveUser in courseware view --- 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 e64501ff89..ed7fff4a30 100644 --- a/openedx/core/djangoapps/courseware_api/views.py +++ b/openedx/core/djangoapps/courseware_api/views.py @@ -414,6 +414,7 @@ class CoursewareInformation(RetrieveAPIView): authentication_classes = ( JwtAuthentication, + BearerAuthenticationAllowInactiveUser, SessionAuthenticationAllowInactiveUser, )