Created
May 10, 2021 12:56
-
-
Save squio/92c37217ce22dcc34b497074fe6a8a16 to your computer and use it in GitHub Desktop.
Use configured Site name instead of request host Django (Rest) Auth
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from allauth.account.adapter import DefaultAccountAdapter | |
from django.contrib.sites.shortcuts import get_current_site | |
from django.contrib.sites.models import Site | |
class AccountAdapter(DefaultAccountAdapter): | |
def get_email_confirmation_url(self, request, emailconfirmation): | |
""" Override to get domain name from Sites configuration instead of request """ | |
# when 'request' is empty, the url from Sites is used | |
try: | |
# test if sites framework is configured | |
if get_current_site(None): | |
return super().get_email_confirmation_url(None, emailconfirmation) | |
except Site.DoesNotExist: | |
pass | |
return super().get_email_confirmation_redirect_url(request, emailconfirmation) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSTALLED_APPS = [ | |
# installed apps | |
'django.contrib.sites', # required for allauth | |
# more apps | |
] | |
ACCOUNT_ADAPTER = 'my.site.account_adapter.AccountAdapter' # override Allauth adapter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment