From 28206e4c45551d9548c6767f176978ddba9499dc Mon Sep 17 00:00:00 2001 From: Robert Raposa Date: Tue, 4 Feb 2020 10:02:04 -0500 Subject: [PATCH] add jwt auth to third-party auth endpoint BOM-897 --- common/djangoapps/third_party_auth/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/third_party_auth/api/views.py b/common/djangoapps/third_party_auth/api/views.py index 8f83908c55..076f74b68e 100644 --- a/common/djangoapps/third_party_auth/api/views.py +++ b/common/djangoapps/third_party_auth/api/views.py @@ -332,7 +332,7 @@ class UserMappingView(ListAPIView): * remote_id: The Id from third party auth provider """ authentication_classes = ( - OAuth2AuthenticationDeprecated, + JwtAuthentication, OAuth2AuthenticationDeprecated, ) serializer_class = serializers.UserMappingSerializer