From 5cc0552b05a93b21da5863072d4904c7d93f3fb7 Mon Sep 17 00:00:00 2001 From: Wayne Witzel III Date: Wed, 13 Sep 2017 21:28:26 -0400 Subject: [PATCH] remove AWXDjangoStrategy in the future --- awx/sso/strategies/django_strategy.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/awx/sso/strategies/django_strategy.py b/awx/sso/strategies/django_strategy.py index 94b25ae14c..728e380dc4 100644 --- a/awx/sso/strategies/django_strategy.py +++ b/awx/sso/strategies/django_strategy.py @@ -7,6 +7,10 @@ from social.strategies.django_strategy import DjangoStrategy class AWXDjangoStrategy(DjangoStrategy): """A DjangoStrategy for python-social-auth containing fixes and updates from social-app-django + + TODO: Revert back to using the default DjangoStrategy after + we upgrade to social-core / social-app-django. We will also + want to ensure we update the SOCIAL_AUTH_STRATEGY setting. """ def __init__(self, storage, request=None, tpl=None):