From 40ad9796fa312de6982385eab1be12a505cefcbf Mon Sep 17 00:00:00 2001 From: rizwanisready Date: Thu, 29 Feb 2024 20:29:34 +0530 Subject: [PATCH] all auth --- goodtimes/settings/base.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/goodtimes/settings/base.py b/goodtimes/settings/base.py index 2b0bea9..88f4e8f 100644 --- a/goodtimes/settings/base.py +++ b/goodtimes/settings/base.py @@ -75,11 +75,11 @@ THIRD_PARTY_APPS = [ "taggit", "django_quill", "corsheaders", - # "allauth", - # "allauth.account", - # "allauth.socialaccount", - # "allauth.socialaccount.providers.apple", - # "allauth.socialaccount.providers.google", + "allauth", + "allauth.account", + "allauth.socialaccount", + "allauth.socialaccount.providers.apple", + "allauth.socialaccount.providers.google", # "django_crontab", # "django_celery_results", # "django_celery_beat", @@ -98,7 +98,7 @@ MIDDLEWARE = [ "django.contrib.auth.middleware.AuthenticationMiddleware", "django.contrib.messages.middleware.MessageMiddleware", "django.middleware.clickjacking.XFrameOptionsMiddleware", - # "allauth.account.middleware.AccountMiddleware", + "allauth.account.middleware.AccountMiddleware", ] ROOT_URLCONF = "goodtimes.urls"