Merge pull request #23013 from edx/robrap/add-jwt-auth-for-third-party-auth

add jwt auth to third-party auth endpoint
This commit is contained in:
Robert Raposa
2020-02-04 10:47:36 -05:00
committed by GitHub

View File

@@ -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