From 455f42299472ee877e39d6b2d4d2dc547578722a Mon Sep 17 00:00:00 2001 From: Arsen Turchanikov Date: Tue, 27 Apr 2021 16:48:35 +0300 Subject: [PATCH 1/2] fix: [EXAM-271] Fix email pipeline partial_token --- edx_oauth_client/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edx_oauth_client/pipeline.py b/edx_oauth_client/pipeline.py index 7f16e22..cc9b520 100644 --- a/edx_oauth_client/pipeline.py +++ b/edx_oauth_client/pipeline.py @@ -118,7 +118,7 @@ def fill_in_email( 'path': request.path, 'state': request.GET.get('state'), 'code': request.GET.get('code'), - 'partial_token': request.GET.get('partial_token'), + 'partial_token': kwargs.get('current_partial').token, } ) else: From c73a1914624210cda9f9f83dcf86c39f64137955 Mon Sep 17 00:00:00 2001 From: Arsen Turchanikov Date: Tue, 27 Apr 2021 16:49:37 +0300 Subject: [PATCH 2/2] chore: [EXAM-271] Update version in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 80c6f97..4cc7c5a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='edx-oauth-client', - version='1.0.3', + version='1.0.4', description='Client OAuth2 from edX installations', author='edX', url='https://github.com/raccoongang/edx_oauth_client',