From f76c936783ec7621671b8e255cf7d77305c852a1 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Thu, 25 May 2023 18:38:19 +0200 Subject: [PATCH] Remove SOCIAL_AUTH_PIPELINE from settings/base.py We are using the default, so not need to define them on our side. --- umap/settings/base.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/umap/settings/base.py b/umap/settings/base.py index 1adae8db..33d3db94 100644 --- a/umap/settings/base.py +++ b/umap/settings/base.py @@ -231,15 +231,3 @@ SOCIAL_AUTH_NO_DEFAULT_PROTECTED_USER_FIELDS = True SOCIAL_AUTH_PROTECTED_USER_FIELDS = ("id", ) LOGIN_URL = "login" SOCIAL_AUTH_LOGIN_REDIRECT_URL = "/login/popup/end/" -SOCIAL_AUTH_PIPELINE = ( - 'social_core.pipeline.social_auth.social_details', - 'social_core.pipeline.social_auth.social_uid', - 'social_core.pipeline.social_auth.auth_allowed', - 'social_core.pipeline.social_auth.social_user', - 'social_core.pipeline.social_auth.associate_by_email', - 'social_core.pipeline.user.get_username', - 'social_core.pipeline.user.create_user', - 'social_core.pipeline.social_auth.associate_user', - 'social_core.pipeline.social_auth.load_extra_data', - 'social_core.pipeline.user.user_details' -)