diff --git a/common/djangoapps/third_party_auth/pipeline.py b/common/djangoapps/third_party_auth/pipeline.py index 6fb7951fb5..d1fd527fef 100644 --- a/common/djangoapps/third_party_auth/pipeline.py +++ b/common/djangoapps/third_party_auth/pipeline.py @@ -452,6 +452,7 @@ def parse_query_params(strategy, response, *args, **kwargs): 'is_register_2': auth_entry == AUTH_ENTRY_REGISTER_2, } + # TODO (ECOM-369): Once the A/B test of the combined login/registration # form completes, we will be able to remove the extra login/registration # end-points. HOWEVER, users who used the new forms during the A/B diff --git a/common/djangoapps/user_api/api/profile.py b/common/djangoapps/user_api/api/profile.py index 4b5ae6a945..0970db267e 100644 --- a/common/djangoapps/user_api/api/profile.py +++ b/common/djangoapps/user_api/api/profile.py @@ -16,6 +16,7 @@ from user_api.helpers import intercept_errors log = logging.getLogger(__name__) + class ProfileRequestError(Exception): """ The request to the API was not valid. """ pass