Django Allauth email verification
Im running into an issue with email verification by code with Django Allauth. I've configured my settings to turn on verification by code instead of the regular URL, however I am running into an issue:
ACCOUNT_EMAIL_VERFICATION_BY_CODE requires ACCOUNT_EMAIL_VERIFICATION = 'mandatory'
While I do have the required setting enabled:
ACCOUNT_LOGIN_ON_EMAIL_CONFIRMATION = True
ACCOUNT_EMAIL_VERIFICATION_BY_CODE_ENABLED = True
ACCOUNT_EMAIL_VERIFICATION = "mandatory"
Has anyone run into this issue before? I've tried turning on the verification for social accounts aswell but this does not resolve the issue.