django-allauth-async 65.16.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- django_allauth_async-65.16.1.1/.dir-locals.el +2 -0
- django_allauth_async-65.16.1.1/.djlintrc +3 -0
- django_allauth_async-65.16.1.1/.editorconfig +27 -0
- django_allauth_async-65.16.1.1/.envrc +7 -0
- django_allauth_async-65.16.1.1/.gitea/ISSUE_TEMPLATE/discussion.md +9 -0
- django_allauth_async-65.16.1.1/.gitea/ISSUE_TEMPLATE/issue.md +8 -0
- django_allauth_async-65.16.1.1/.gitea/pull_request_template.md +20 -0
- django_allauth_async-65.16.1.1/.github/FUNDING.yml +12 -0
- django_allauth_async-65.16.1.1/.github/ISSUE_TEMPLATE/issue.md +13 -0
- django_allauth_async-65.16.1.1/.github/SECURITY.md +3 -0
- django_allauth_async-65.16.1.1/.github/dependabot.yml +10 -0
- django_allauth_async-65.16.1.1/.github/pull_request_template.md +4 -0
- django_allauth_async-65.16.1.1/.github/workflows/ci.yml +82 -0
- django_allauth_async-65.16.1.1/.gitignore +49 -0
- django_allauth_async-65.16.1.1/.gitlab-ci.yml +109 -0
- django_allauth_async-65.16.1.1/.readthedocs.yaml +22 -0
- django_allauth_async-65.16.1.1/.woodpecker.yaml +51 -0
- django_allauth_async-65.16.1.1/AUTHORS +193 -0
- django_allauth_async-65.16.1.1/CONTRIBUTING.rst +211 -0
- django_allauth_async-65.16.1.1/ChangeLog.rst +553 -0
- django_allauth_async-65.16.1.1/LICENSE +24 -0
- django_allauth_async-65.16.1.1/Makefile +80 -0
- django_allauth_async-65.16.1.1/PKG-INFO +285 -0
- django_allauth_async-65.16.1.1/README.rst +223 -0
- django_allauth_async-65.16.1.1/allauth/__init__.py +20 -0
- django_allauth_async-65.16.1.1/allauth/account/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/account/adapter.py +1040 -0
- django_allauth_async-65.16.1.1/allauth/account/admin.py +56 -0
- django_allauth_async-65.16.1.1/allauth/account/app_settings.py +641 -0
- django_allauth_async-65.16.1.1/allauth/account/apps.py +21 -0
- django_allauth_async-65.16.1.1/allauth/account/auth_backends.py +145 -0
- django_allauth_async-65.16.1.1/allauth/account/authentication.py +9 -0
- django_allauth_async-65.16.1.1/allauth/account/checks.py +187 -0
- django_allauth_async-65.16.1.1/allauth/account/decorators.py +112 -0
- django_allauth_async-65.16.1.1/allauth/account/fields.py +85 -0
- django_allauth_async-65.16.1.1/allauth/account/forms.py +861 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/__init__.py +4 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/constants.py +7 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/decorators.py +39 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/emailkit.py +18 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/__init__.py +30 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/code_verification.py +112 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/email_verification.py +366 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/email_verification_by_code.py +160 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/login.py +152 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/login_by_code.py +177 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/logout.py +23 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/manage_email.py +255 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/password_change.py +55 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/password_reset.py +122 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/password_reset_by_code.py +99 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/phone_verification.py +211 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/reauthentication.py +110 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/flows/signup.py +116 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/stagekit.py +61 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/templatekit.py +70 -0
- django_allauth_async-65.16.1.1/allauth/account/internal/userkit.py +84 -0
- django_allauth_async-65.16.1.1/allauth/account/management/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/account/management/commands/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/account/management/commands/account_unsetmultipleprimaryemails.py +48 -0
- django_allauth_async-65.16.1.1/allauth/account/managers.py +164 -0
- django_allauth_async-65.16.1.1/allauth/account/middleware.py +105 -0
- django_allauth_async-65.16.1.1/allauth/account/migrations/0001_initial.py +105 -0
- django_allauth_async-65.16.1.1/allauth/account/migrations/0002_email_max_length.py +32 -0
- django_allauth_async-65.16.1.1/allauth/account/migrations/0003_alter_emailaddress_create_unique_verified_email.py +30 -0
- django_allauth_async-65.16.1.1/allauth/account/migrations/0004_alter_emailaddress_drop_unique_email.py +21 -0
- django_allauth_async-65.16.1.1/allauth/account/migrations/0005_emailaddress_idx_upper_email.py +20 -0
- django_allauth_async-65.16.1.1/allauth/account/migrations/0006_emailaddress_lower.py +26 -0
- django_allauth_async-65.16.1.1/allauth/account/migrations/0007_emailaddress_idx_email.py +25 -0
- django_allauth_async-65.16.1.1/allauth/account/migrations/0008_emailaddress_unique_primary_email_fixup.py +46 -0
- django_allauth_async-65.16.1.1/allauth/account/migrations/0009_emailaddress_unique_primary_email.py +20 -0
- django_allauth_async-65.16.1.1/allauth/account/migrations/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/account/mixins.py +218 -0
- django_allauth_async-65.16.1.1/allauth/account/models.py +355 -0
- django_allauth_async-65.16.1.1/allauth/account/reauthentication.py +14 -0
- django_allauth_async-65.16.1.1/allauth/account/signals.py +103 -0
- django_allauth_async-65.16.1.1/allauth/account/stages.py +249 -0
- django_allauth_async-65.16.1.1/allauth/account/static/account/js/account.js +20 -0
- django_allauth_async-65.16.1.1/allauth/account/static/account/js/onload.js +12 -0
- django_allauth_async-65.16.1.1/allauth/account/templatetags/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/account/templatetags/account.py +27 -0
- django_allauth_async-65.16.1.1/allauth/account/urls.py +128 -0
- django_allauth_async-65.16.1.1/allauth/account/utils.py +346 -0
- django_allauth_async-65.16.1.1/allauth/account/views.py +1479 -0
- django_allauth_async-65.16.1.1/allauth/app_settings.py +92 -0
- django_allauth_async-65.16.1.1/allauth/core/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/core/context.py +24 -0
- django_allauth_async-65.16.1.1/allauth/core/exceptions.py +34 -0
- django_allauth_async-65.16.1.1/allauth/core/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/core/internal/adapter.py +22 -0
- django_allauth_async-65.16.1.1/allauth/core/internal/cryptokit.py +55 -0
- django_allauth_async-65.16.1.1/allauth/core/internal/httpkit.py +227 -0
- django_allauth_async-65.16.1.1/allauth/core/internal/jwkkit.py +48 -0
- django_allauth_async-65.16.1.1/allauth/core/internal/modelkit.py +89 -0
- django_allauth_async-65.16.1.1/allauth/core/internal/ratelimit.py +218 -0
- django_allauth_async-65.16.1.1/allauth/core/internal/sessionkit.py +13 -0
- django_allauth_async-65.16.1.1/allauth/core/internal/urlkit.py +12 -0
- django_allauth_async-65.16.1.1/allauth/core/ratelimit.py +74 -0
- django_allauth_async-65.16.1.1/allauth/decorators.py +21 -0
- django_allauth_async-65.16.1.1/allauth/exceptions.py +9 -0
- django_allauth_async-65.16.1.1/allauth/headless/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/account/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/account/inputs.py +273 -0
- django_allauth_async-65.16.1.1/allauth/headless/account/response.py +61 -0
- django_allauth_async-65.16.1.1/allauth/headless/account/urls.py +124 -0
- django_allauth_async-65.16.1.1/allauth/headless/account/views.py +586 -0
- django_allauth_async-65.16.1.1/allauth/headless/adapter.py +150 -0
- django_allauth_async-65.16.1.1/allauth/headless/app_settings.py +87 -0
- django_allauth_async-65.16.1.1/allauth/headless/apps.py +12 -0
- django_allauth_async-65.16.1.1/allauth/headless/base/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/base/response.py +200 -0
- django_allauth_async-65.16.1.1/allauth/headless/base/urls.py +16 -0
- django_allauth_async-65.16.1.1/allauth/headless/base/views.py +72 -0
- django_allauth_async-65.16.1.1/allauth/headless/checks.py +20 -0
- django_allauth_async-65.16.1.1/allauth/headless/constants.py +27 -0
- django_allauth_async-65.16.1.1/allauth/headless/contrib/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/contrib/ninja/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/contrib/ninja/security.py +59 -0
- django_allauth_async-65.16.1.1/allauth/headless/contrib/rest_framework/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/contrib/rest_framework/authentication.py +53 -0
- django_allauth_async-65.16.1.1/allauth/headless/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/internal/authkit.py +92 -0
- django_allauth_async-65.16.1.1/allauth/headless/internal/decorators.py +58 -0
- django_allauth_async-65.16.1.1/allauth/headless/internal/restkit/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/internal/restkit/inputs.py +26 -0
- django_allauth_async-65.16.1.1/allauth/headless/internal/restkit/response.py +64 -0
- django_allauth_async-65.16.1.1/allauth/headless/internal/restkit/views.py +64 -0
- django_allauth_async-65.16.1.1/allauth/headless/internal/sessionkit.py +55 -0
- django_allauth_async-65.16.1.1/allauth/headless/mfa/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/mfa/inputs.py +82 -0
- django_allauth_async-65.16.1.1/allauth/headless/mfa/response.py +110 -0
- django_allauth_async-65.16.1.1/allauth/headless/mfa/urls.py +111 -0
- django_allauth_async-65.16.1.1/allauth/headless/mfa/views.py +310 -0
- django_allauth_async-65.16.1.1/allauth/headless/socialaccount/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/socialaccount/forms.py +37 -0
- django_allauth_async-65.16.1.1/allauth/headless/socialaccount/inputs.py +117 -0
- django_allauth_async-65.16.1.1/allauth/headless/socialaccount/internal.py +104 -0
- django_allauth_async-65.16.1.1/allauth/headless/socialaccount/response.py +124 -0
- django_allauth_async-65.16.1.1/allauth/headless/socialaccount/urls.py +54 -0
- django_allauth_async-65.16.1.1/allauth/headless/socialaccount/views.py +119 -0
- django_allauth_async-65.16.1.1/allauth/headless/spec/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/spec/doc/description.md +220 -0
- django_allauth_async-65.16.1.1/allauth/headless/spec/doc/openapi.yaml +3677 -0
- django_allauth_async-65.16.1.1/allauth/headless/spec/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/spec/internal/openapikit.py +89 -0
- django_allauth_async-65.16.1.1/allauth/headless/spec/internal/schema.py +187 -0
- django_allauth_async-65.16.1.1/allauth/headless/spec/urls.py +19 -0
- django_allauth_async-65.16.1.1/allauth/headless/spec/views.py +43 -0
- django_allauth_async-65.16.1.1/allauth/headless/templates/headless/spec/redoc_cdn.html +14 -0
- django_allauth_async-65.16.1.1/allauth/headless/templates/headless/spec/swagger_cdn.html +30 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/base.py +10 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/inputs.py +5 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/response.py +13 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/sessions.py +10 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/base.py +67 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/jwt/__init__.py +4 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/jwt/internal.py +265 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/jwt/strategy.py +92 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/sessions.py +23 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/urls.py +16 -0
- django_allauth_async-65.16.1.1/allauth/headless/tokens/views.py +27 -0
- django_allauth_async-65.16.1.1/allauth/headless/urls.py +106 -0
- django_allauth_async-65.16.1.1/allauth/headless/usersessions/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/headless/usersessions/inputs.py +14 -0
- django_allauth_async-65.16.1.1/allauth/headless/usersessions/response.py +28 -0
- django_allauth_async-65.16.1.1/allauth/headless/usersessions/urls.py +23 -0
- django_allauth_async-65.16.1.1/allauth/headless/usersessions/views.py +36 -0
- django_allauth_async-65.16.1.1/allauth/idp/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/adapter.py +162 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/admin.py +52 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/app_settings.py +104 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/apps.py +12 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/ninja/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/ninja/security.py +44 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/rest_framework/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/rest_framework/authentication.py +22 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/rest_framework/permissions.py +47 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/forms.py +177 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/clientkit.py +160 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/flows.py +26 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/authorization_codes.py +66 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/device_codes.py +133 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/request_validator.py +434 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/server.py +100 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/utils.py +85 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/scope.py +44 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/tokens.py +37 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/migrations/0001_initial.py +167 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/migrations/0002_client_default_scopes.py +20 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/migrations/0003_client_allow_uri_wildcards.py +20 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/migrations/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/models.py +249 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/urls.py +85 -0
- django_allauth_async-65.16.1.1/allauth/idp/oidc/views.py +541 -0
- django_allauth_async-65.16.1.1/allauth/idp/urls.py +7 -0
- django_allauth_async-65.16.1.1/allauth/locale/ar/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/ar/LC_MESSAGES/django.po +2010 -0
- django_allauth_async-65.16.1.1/allauth/locale/az/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/az/LC_MESSAGES/django.po +1968 -0
- django_allauth_async-65.16.1.1/allauth/locale/bg/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/bg/LC_MESSAGES/django.po +1985 -0
- django_allauth_async-65.16.1.1/allauth/locale/ca/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/ca/LC_MESSAGES/django.po +2020 -0
- django_allauth_async-65.16.1.1/allauth/locale/cs/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/cs/LC_MESSAGES/django.po +2043 -0
- django_allauth_async-65.16.1.1/allauth/locale/da/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/da/LC_MESSAGES/django.po +1990 -0
- django_allauth_async-65.16.1.1/allauth/locale/de/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/de/LC_MESSAGES/django.po +2045 -0
- django_allauth_async-65.16.1.1/allauth/locale/el/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/el/LC_MESSAGES/django.po +2044 -0
- django_allauth_async-65.16.1.1/allauth/locale/en/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/en/LC_MESSAGES/django.po +1799 -0
- django_allauth_async-65.16.1.1/allauth/locale/es/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/es/LC_MESSAGES/django.po +2086 -0
- django_allauth_async-65.16.1.1/allauth/locale/et/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/et/LC_MESSAGES/django.po +1921 -0
- django_allauth_async-65.16.1.1/allauth/locale/eu/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/eu/LC_MESSAGES/django.po +1994 -0
- django_allauth_async-65.16.1.1/allauth/locale/fa/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/fa/LC_MESSAGES/django.po +1985 -0
- django_allauth_async-65.16.1.1/allauth/locale/fi/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/fi/LC_MESSAGES/django.po +2012 -0
- django_allauth_async-65.16.1.1/allauth/locale/fr/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/fr/LC_MESSAGES/django.po +2082 -0
- django_allauth_async-65.16.1.1/allauth/locale/he/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/he/LC_MESSAGES/django.po +1963 -0
- django_allauth_async-65.16.1.1/allauth/locale/hr/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/hr/LC_MESSAGES/django.po +2013 -0
- django_allauth_async-65.16.1.1/allauth/locale/ht/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/ht/LC_MESSAGES/django.po +1908 -0
- django_allauth_async-65.16.1.1/allauth/locale/hu/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/hu/LC_MESSAGES/django.po +1988 -0
- django_allauth_async-65.16.1.1/allauth/locale/id/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/id/LC_MESSAGES/django.po +1988 -0
- django_allauth_async-65.16.1.1/allauth/locale/it/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/it/LC_MESSAGES/django.po +2035 -0
- django_allauth_async-65.16.1.1/allauth/locale/ja/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/ja/LC_MESSAGES/django.po +1985 -0
- django_allauth_async-65.16.1.1/allauth/locale/ka/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/ka/LC_MESSAGES/django.po +1994 -0
- django_allauth_async-65.16.1.1/allauth/locale/ko/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/ko/LC_MESSAGES/django.po +1892 -0
- django_allauth_async-65.16.1.1/allauth/locale/ky/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/ky/LC_MESSAGES/django.po +1986 -0
- django_allauth_async-65.16.1.1/allauth/locale/lt/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/lt/LC_MESSAGES/django.po +2014 -0
- django_allauth_async-65.16.1.1/allauth/locale/lv/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/lv/LC_MESSAGES/django.po +1995 -0
- django_allauth_async-65.16.1.1/allauth/locale/mn/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/mn/LC_MESSAGES/django.po +1976 -0
- django_allauth_async-65.16.1.1/allauth/locale/nb/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/nb/LC_MESSAGES/django.po +1988 -0
- django_allauth_async-65.16.1.1/allauth/locale/nl/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/nl/LC_MESSAGES/django.po +2061 -0
- django_allauth_async-65.16.1.1/allauth/locale/pl/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/pl/LC_MESSAGES/django.po +2044 -0
- django_allauth_async-65.16.1.1/allauth/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/pt_BR/LC_MESSAGES/django.po +1946 -0
- django_allauth_async-65.16.1.1/allauth/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/pt_PT/LC_MESSAGES/django.po +1997 -0
- django_allauth_async-65.16.1.1/allauth/locale/ro/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/ro/LC_MESSAGES/django.po +2032 -0
- django_allauth_async-65.16.1.1/allauth/locale/ru/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/ru/LC_MESSAGES/django.po +2061 -0
- django_allauth_async-65.16.1.1/allauth/locale/sk/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/sk/LC_MESSAGES/django.po +1994 -0
- django_allauth_async-65.16.1.1/allauth/locale/sl/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/sl/LC_MESSAGES/django.po +1986 -0
- django_allauth_async-65.16.1.1/allauth/locale/sr/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/sr/LC_MESSAGES/django.po +1998 -0
- django_allauth_async-65.16.1.1/allauth/locale/sr_Latn/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/sr_Latn/LC_MESSAGES/django.po +1998 -0
- django_allauth_async-65.16.1.1/allauth/locale/sv/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/sv/LC_MESSAGES/django.po +2020 -0
- django_allauth_async-65.16.1.1/allauth/locale/th/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/th/LC_MESSAGES/django.po +1950 -0
- django_allauth_async-65.16.1.1/allauth/locale/tr/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/tr/LC_MESSAGES/django.po +2048 -0
- django_allauth_async-65.16.1.1/allauth/locale/uk/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/uk/LC_MESSAGES/django.po +1972 -0
- django_allauth_async-65.16.1.1/allauth/locale/uz/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/uz/LC_MESSAGES/django.po +1946 -0
- django_allauth_async-65.16.1.1/allauth/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/zh_Hans/LC_MESSAGES/django.po +1883 -0
- django_allauth_async-65.16.1.1/allauth/locale/zh_Hant/LC_MESSAGES/django.mo +0 -0
- django_allauth_async-65.16.1.1/allauth/locale/zh_Hant/LC_MESSAGES/django.po +2067 -0
- django_allauth_async-65.16.1.1/allauth/mfa/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/adapter.py +165 -0
- django_allauth_async-65.16.1.1/allauth/mfa/admin.py +10 -0
- django_allauth_async-65.16.1.1/allauth/mfa/app_settings.py +170 -0
- django_allauth_async-65.16.1.1/allauth/mfa/apps.py +19 -0
- django_allauth_async-65.16.1.1/allauth/mfa/base/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/base/forms.py +73 -0
- django_allauth_async-65.16.1.1/allauth/mfa/base/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/base/internal/flows.py +71 -0
- django_allauth_async-65.16.1.1/allauth/mfa/base/urls.py +14 -0
- django_allauth_async-65.16.1.1/allauth/mfa/base/views.py +200 -0
- django_allauth_async-65.16.1.1/allauth/mfa/checks.py +44 -0
- django_allauth_async-65.16.1.1/allauth/mfa/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/internal/constants.py +7 -0
- django_allauth_async-65.16.1.1/allauth/mfa/internal/flows/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/internal/flows/add.py +50 -0
- django_allauth_async-65.16.1.1/allauth/mfa/internal/flows/trust.py +86 -0
- django_allauth_async-65.16.1.1/allauth/mfa/migrations/0001_initial.py +51 -0
- django_allauth_async-65.16.1.1/allauth/mfa/migrations/0002_authenticator_timestamps.py +23 -0
- django_allauth_async-65.16.1.1/allauth/mfa/migrations/0003_authenticator_type_uniq.py +36 -0
- django_allauth_async-65.16.1.1/allauth/mfa/migrations/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/models.py +70 -0
- django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/forms.py +20 -0
- django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/internal/auth.py +126 -0
- django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/internal/flows.py +96 -0
- django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/urls.py +18 -0
- django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/views.py +122 -0
- django_allauth_async-65.16.1.1/allauth/mfa/signals.py +58 -0
- django_allauth_async-65.16.1.1/allauth/mfa/stages.py +65 -0
- django_allauth_async-65.16.1.1/allauth/mfa/static/mfa/js/recovery_codes.js +34 -0
- django_allauth_async-65.16.1.1/allauth/mfa/static/mfa/js/webauthn-json.js +261 -0
- django_allauth_async-65.16.1.1/allauth/mfa/static/mfa/js/webauthn.js +108 -0
- django_allauth_async-65.16.1.1/allauth/mfa/totp/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/totp/forms.py +44 -0
- django_allauth_async-65.16.1.1/allauth/mfa/totp/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/totp/internal/auth.py +114 -0
- django_allauth_async-65.16.1.1/allauth/mfa/totp/internal/flows.py +44 -0
- django_allauth_async-65.16.1.1/allauth/mfa/totp/urls.py +9 -0
- django_allauth_async-65.16.1.1/allauth/mfa/totp/views.py +132 -0
- django_allauth_async-65.16.1.1/allauth/mfa/urls.py +19 -0
- django_allauth_async-65.16.1.1/allauth/mfa/utils.py +17 -0
- django_allauth_async-65.16.1.1/allauth/mfa/webauthn/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/webauthn/forms.py +129 -0
- django_allauth_async-65.16.1.1/allauth/mfa/webauthn/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/mfa/webauthn/internal/auth.py +221 -0
- django_allauth_async-65.16.1.1/allauth/mfa/webauthn/internal/flows.py +126 -0
- django_allauth_async-65.16.1.1/allauth/mfa/webauthn/stages.py +18 -0
- django_allauth_async-65.16.1.1/allauth/mfa/webauthn/urls.py +39 -0
- django_allauth_async-65.16.1.1/allauth/mfa/webauthn/views.py +249 -0
- django_allauth_async-65.16.1.1/allauth/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/ratelimit.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/adapter.py +394 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/admin.py +73 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/app_settings.py +171 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/apps.py +18 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/checks.py +23 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/forms.py +67 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/helpers.py +85 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/internal/flows/__init__.py +9 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/internal/flows/connect.py +132 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/internal/flows/email_authentication.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/internal/flows/login.py +98 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/internal/flows/signup.py +147 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/internal/jwtkit.py +108 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/internal/statekit.py +75 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0001_initial.py +192 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0002_token_max_lengths.py +45 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0003_extra_data_default_dict.py +16 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0004_app_provider_id_settings.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0005_socialtoken_nullable_app.py +23 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0006_alter_socialaccount_extra_data.py +17 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/models.py +444 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/__init__.py +59 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/agave/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/agave/provider.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/agave/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/agave/views.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon/provider.py +36 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon/views.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon_cognito/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon_cognito/provider.py +71 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon_cognito/urls.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon_cognito/utils.py +10 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon_cognito/views.py +59 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/apple_session.py +10 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/client.py +100 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/provider.py +94 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/urls.py +15 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/views.py +155 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/asana/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/asana/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/asana/provider.py +28 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/asana/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/asana/views.py +27 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/atlassian/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/atlassian/provider.py +39 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/atlassian/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/atlassian/views.py +33 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/auth0/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/auth0/provider.py +33 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/auth0/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/auth0/views.py +32 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/authentiq/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/authentiq/provider.py +112 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/authentiq/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/authentiq/views.py +39 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/baidu/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/baidu/provider.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/baidu/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/baidu/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/base/__init__.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/base/constants.py +16 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/base/provider.py +430 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/base/utils.py +19 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/base/views.py +27 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/basecamp/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/basecamp/provider.py +44 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/basecamp/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/basecamp/views.py +30 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/provider.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/validators.py +4 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/views.py +157 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitbucket_oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitbucket_oauth2/provider.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitbucket_oauth2/urls.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitbucket_oauth2/views.py +46 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitly/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitly/provider.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitly/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitly/views.py +27 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/box/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/box/provider.py +25 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/box/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/box/views.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/cilogon/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/cilogon/provider.py +60 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/cilogon/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/cilogon/views.py +31 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/clever/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/clever/provider.py +57 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/clever/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/clever/views.py +44 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/coinbase/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/coinbase/provider.py +31 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/coinbase/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/coinbase/views.py +36 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dataporten/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dataporten/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dataporten/provider.py +87 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dataporten/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dataporten/views.py +58 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/daum/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/daum/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/daum/provider.py +23 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/daum/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/daum/views.py +27 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/digitalocean/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/digitalocean/provider.py +26 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/digitalocean/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/digitalocean/views.py +28 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dingtalk/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dingtalk/client.py +33 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dingtalk/provider.py +32 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dingtalk/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dingtalk/views.py +41 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discogs/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discogs/provider.py +26 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discogs/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discogs/views.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discord/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discord/provider.py +110 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discord/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discord/views.py +31 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/disqus/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/disqus/provider.py +48 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/disqus/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/disqus/views.py +36 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/douban/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/douban/provider.py +45 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/douban/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/douban/views.py +44 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/doximity/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/doximity/provider.py +38 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/doximity/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/doximity/views.py +28 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/draugiem/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/draugiem/provider.py +56 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/draugiem/urls.py +9 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/draugiem/views.py +90 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/drip/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/drip/provider.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/drip/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/drip/views.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dropbox/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dropbox/provider.py +26 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dropbox/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dropbox/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/forms.py +14 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/provider.py +94 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/templates/dummy/authenticate_form.html +27 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/urls.py +9 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/views.py +69 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dwolla/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dwolla/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dwolla/provider.py +31 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dwolla/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dwolla/views.py +60 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edmodo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edmodo/provider.py +45 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edmodo/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edmodo/views.py +27 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edx/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edx/provider.py +36 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edx/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edx/views.py +44 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eventbrite/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eventbrite/provider.py +71 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eventbrite/urls.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eventbrite/views.py +33 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eveonline/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eveonline/provider.py +52 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eveonline/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eveonline/views.py +28 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/evernote/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/evernote/provider.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/evernote/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/evernote/views.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/exist/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/exist/provider.py +41 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/exist/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/exist/views.py +28 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/constants.py +17 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/data/FacebookLocales.xml +850 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/flows.py +161 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/forms.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/locale.py +74 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/provider.py +226 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/static/facebook/js/fbconnect.js +124 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/templates/facebook/fbconnect.html +4 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/urls.py +17 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/views.py +98 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feedly/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feedly/provider.py +33 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feedly/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feedly/views.py +30 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feishu/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feishu/client.py +82 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feishu/provider.py +26 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feishu/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feishu/views.py +68 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/figma/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/figma/provider.py +39 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/figma/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/figma/views.py +30 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fivehundredpx/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fivehundredpx/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fivehundredpx/provider.py +40 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fivehundredpx/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fivehundredpx/views.py +42 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/flickr/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/flickr/provider.py +73 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/flickr/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/flickr/views.py +43 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/foursquare/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/foursquare/provider.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/foursquare/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/foursquare/views.py +33 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/frontier/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/frontier/provider.py +51 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/frontier/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/frontier/views.py +30 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/constants.py +11 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/provider.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/views.py +30 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitea/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitea/provider.py +49 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitea/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitea/views.py +38 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/github/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/github/provider.py +59 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/github/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/github/views.py +54 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitlab/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitlab/provider.py +36 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitlab/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitlab/views.py +81 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/globus/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/globus/provider.py +42 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/globus/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/globus/views.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/google/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/google/provider.py +113 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/google/urls.py +16 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/google/views.py +165 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gumroad/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gumroad/provider.py +39 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gumroad/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gumroad/views.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubic/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubic/provider.py +30 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubic/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubic/views.py +30 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubspot/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubspot/provider.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubspot/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubspot/views.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/instagram/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/instagram/provider.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/instagram/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/instagram/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/jupyterhub/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/jupyterhub/provider.py +25 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/jupyterhub/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/jupyterhub/views.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/kakao/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/kakao/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/kakao/provider.py +55 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/kakao/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/kakao/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lemonldap/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lemonldap/provider.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lemonldap/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lemonldap/views.py +38 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lichess/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lichess/provider.py +59 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lichess/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lichess/views.py +60 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/line/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/line/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/line/provider.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/line/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/line/views.py +57 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/linkedin_oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/linkedin_oauth2/provider.py +150 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/linkedin_oauth2/urls.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/linkedin_oauth2/views.py +52 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailchimp/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailchimp/provider.py +56 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailchimp/urls.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailchimp/views.py +33 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailcow/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailcow/provider.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailcow/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailcow/views.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailru/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailru/provider.py +43 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailru/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailru/views.py +41 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mediawiki/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mediawiki/provider.py +64 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mediawiki/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mediawiki/views.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/meetup/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/meetup/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/meetup/provider.py +25 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/meetup/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/meetup/views.py +27 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/microsoft/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/microsoft/provider.py +46 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/microsoft/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/microsoft/views.py +89 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/miro/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/miro/provider.py +36 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/miro/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/miro/views.py +32 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/naver/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/naver/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/naver/provider.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/naver/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/naver/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/netiq/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/netiq/provider.py +36 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/netiq/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/netiq/views.py +51 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/nextcloud/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/nextcloud/provider.py +32 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/nextcloud/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/nextcloud/views.py +58 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/notion/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/notion/client.py +43 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/notion/provider.py +57 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/notion/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/notion/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/client.py +227 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/oauth1_auth.py +140 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/provider.py +92 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/urls.py +17 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/views.py +124 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/client.py +112 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/provider.py +135 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/urls.py +17 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/utils.py +18 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/views.py +219 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/odnoklassniki/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/odnoklassniki/provider.py +46 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/odnoklassniki/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/odnoklassniki/views.py +73 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/okta/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/okta/provider.py +48 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/okta/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/okta/views.py +57 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/admin.py +15 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/forms.py +13 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/migrations/0001_initial.py +50 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/migrations/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/models.py +23 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/provider.py +108 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/urls.py +9 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/utils.py +184 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/views.py +184 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid_connect/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid_connect/provider.py +131 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid_connect/urls.py +31 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid_connect/views.py +116 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openstreetmap/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openstreetmap/provider.py +41 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openstreetmap/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openstreetmap/views.py +36 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/orcid/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/orcid/provider.py +56 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/orcid/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/orcid/views.py +44 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/constants.py +11 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/provider.py +52 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/urls.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/views.py +62 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/paypal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/paypal/provider.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/paypal/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/paypal/views.py +49 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pinterest/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pinterest/provider.py +61 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pinterest/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pinterest/views.py +47 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/client.py +96 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/provider.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/views.py +22 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/questrade/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/questrade/provider.py +22 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/questrade/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/questrade/views.py +32 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/quickbooks/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/quickbooks/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/quickbooks/provider.py +61 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/quickbooks/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/quickbooks/views.py +47 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/reddit/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/reddit/provider.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/reddit/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/reddit/views.py +39 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/robinhood/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/robinhood/provider.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/robinhood/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/robinhood/views.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/salesforce/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/salesforce/provider.py +57 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/salesforce/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/salesforce/views.py +41 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/saml/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/saml/provider.py +141 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/saml/urls.py +39 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/saml/utils.py +182 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/saml/views.py +209 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/sharefile/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/sharefile/provider.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/sharefile/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/sharefile/views.py +38 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/shopify/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/shopify/provider.py +88 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/shopify/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/shopify/views.py +97 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/slack/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/slack/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/slack/provider.py +44 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/slack/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/slack/views.py +37 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/constants.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/provider.py +32 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/views.py +55 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/soundcloud/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/soundcloud/provider.py +33 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/soundcloud/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/soundcloud/views.py +27 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/spotify/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/spotify/provider.py +39 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/spotify/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/spotify/views.py +27 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stackexchange/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stackexchange/provider.py +39 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stackexchange/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stackexchange/views.py +31 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/steam/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/steam/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/steam/provider.py +134 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/steam/urls.py +9 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/steam/views.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stocktwits/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stocktwits/provider.py +31 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stocktwits/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stocktwits/views.py +31 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/strava/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/strava/provider.py +49 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/strava/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/strava/views.py +28 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stripe/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stripe/provider.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stripe/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stripe/views.py +30 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/provider.py +70 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/static/telegram/js/telegram.js +19 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/templates/telegram/callback.html +6 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/urls.py +9 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/views.py +88 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/client.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/provider.py +45 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/scope.py +6 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/views.py +48 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trainingpeaks/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trainingpeaks/provider.py +47 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trainingpeaks/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trainingpeaks/views.py +60 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trello/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trello/provider.py +47 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trello/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trello/views.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr/provider.py +28 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr/views.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr_oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr_oauth2/provider.py +31 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr_oauth2/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr_oauth2/views.py +32 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twentythreeandme/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twentythreeandme/provider.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twentythreeandme/urls.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twentythreeandme/views.py +28 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitch/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitch/provider.py +43 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitch/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitch/views.py +47 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter/provider.py +60 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter/views.py +42 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter_oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter_oauth2/provider.py +54 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter_oauth2/urls.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter_oauth2/views.py +41 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/untappd/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/untappd/client.py +53 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/untappd/provider.py +58 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/untappd/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/untappd/views.py +32 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo/provider.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo/views.py +35 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo_oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo_oauth2/models.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo_oauth2/provider.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo_oauth2/urls.py +7 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo_oauth2/views.py +28 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vk/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vk/provider.py +51 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vk/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vk/views.py +58 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/wahoo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/wahoo/provider.py +51 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/wahoo/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/wahoo/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weibo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weibo/provider.py +33 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weibo/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weibo/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weixin/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weixin/client.py +52 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weixin/provider.py +32 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weixin/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weixin/views.py +45 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/windowslive/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/windowslive/provider.py +41 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/windowslive/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/windowslive/views.py +38 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/xing/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/xing/provider.py +38 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/xing/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/xing/views.py +34 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yahoo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yahoo/models.py +1 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yahoo/provider.py +44 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yahoo/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yahoo/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yandex/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yandex/provider.py +57 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yandex/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yandex/views.py +30 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/ynab/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/ynab/provider.py +38 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/ynab/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/ynab/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoho/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoho/provider.py +47 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoho/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoho/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoom/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoom/provider.py +41 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoom/urls.py +5 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoom/views.py +29 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/sessions.py +63 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/signals.py +32 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/templatetags/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/templatetags/socialaccount.py +90 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/urls.py +15 -0
- django_allauth_async-65.16.1.1/allauth/socialaccount/views.py +151 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/account_inactive.html +14 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/base_confirm_code.html +96 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/base_entrance.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/base_manage.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/base_manage_email.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/base_manage_password.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/base_manage_phone.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/base_reauthenticate.html +29 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/confirm_email_verification_code.html +17 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/confirm_login_code.html +20 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/confirm_password_reset_code.html +14 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/confirm_phone_verification_code.html +17 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/account_already_exists_message.txt +13 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/account_already_exists_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/base_message.txt +7 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/base_notification.txt +14 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/email_changed_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/email_changed_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirm_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirm_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirmation_message.txt +9 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirmation_signup_message.txt +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirmation_signup_subject.txt +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirmation_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/email_deleted_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/email_deleted_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/login_code_message.txt +9 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/login_code_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/password_changed_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/password_changed_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_code_message.txt +9 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_code_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_key_message.txt +9 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_key_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/password_set_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/password_set_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/unknown_account_message.txt +10 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email/unknown_account_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email.html +83 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email_change.html +68 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/email_confirm.html +39 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/login.html +61 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/logout.html +25 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/cannot_delete_primary_email.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/email_confirmation_failed.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/email_confirmation_sent.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/email_confirmed.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/email_deleted.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/logged_in.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/logged_out.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/login_code_sent.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/password_changed.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/password_set.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/phone_verification_sent.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/phone_verified.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/primary_email_set.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/messages/unverified_primary_email.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/password_change.html +25 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/password_reset.html +33 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/password_reset_done.html +18 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/password_reset_from_key.html +46 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/password_reset_from_key_done.html +14 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/password_set.html +25 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/phone_change.html +51 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/reauthenticate.html +22 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/request_login_code.html +30 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/signup.html +45 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/signup_by_passkey.html +38 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/signup_closed.html +14 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/snippets/already_logged_in.html +9 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/snippets/warn_no_email.html +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/verification_sent.html +14 -0
- django_allauth_async-65.16.1.1/allauth/templates/account/verified_email_required.html +25 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/alert.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/badge.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/button.html +12 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/button_group.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/details.html +9 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/field.html +47 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/fields.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/form.html +8 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/h1.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/h2.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/hr.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/img.html +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/p.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/panel.html +14 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/provider.html +3 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/provider_list.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/table.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/tbody.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/td.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/th.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/thead.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/tr.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/layouts/base.html +86 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/layouts/entrance.html +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/allauth/layouts/manage.html +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/authorization_form.html +31 -0
- django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/base.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/device_authorization_code_form.html +25 -0
- django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/device_authorization_confirm_form.html +34 -0
- django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/device_authorization_confirmed.html +14 -0
- django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/device_authorization_denied.html +14 -0
- django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/error.html +18 -0
- django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/logout.html +28 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/authenticate.html +73 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/base_entrance.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/base_manage.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/email/recovery_codes_generated_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/email/recovery_codes_generated_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/email/totp_activated_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/email/totp_activated_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/email/totp_deactivated_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/email/totp_deactivated_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/email/webauthn_added_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/email/webauthn_added_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/email/webauthn_removed_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/email/webauthn_removed_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/index.html +117 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/messages/recovery_codes_generated.txt +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/messages/totp_activated.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/messages/totp_deactivated.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/messages/webauthn_added.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/messages/webauthn_removed.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/reauthenticate.html +22 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/recovery_codes/base.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/recovery_codes/download.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/recovery_codes/generate.html +33 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/recovery_codes/index.html +52 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/totp/activate_form.html +36 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/totp/base.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/totp/deactivate_form.html +28 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/trust.html +40 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/add_form.html +33 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/authenticator_confirm_delete.html +20 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/authenticator_list.html +74 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/base.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/edit_form.html +22 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/reauthenticate.html +29 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/signup_form.html +44 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/snippets/login_script.html +13 -0
- django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/snippets/scripts.html +5 -0
- django_allauth_async-65.16.1.1/allauth/templates/openid/base.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/openid/login.html +24 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/authentication_error.html +14 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/base_entrance.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/base_manage.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/connections.html +54 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/email/account_connected_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/email/account_connected_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/email/account_disconnected_message.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/email/account_disconnected_subject.txt +4 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/login.html +31 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/login_cancelled.html +15 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/login_redirect.html +13 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/messages/account_connected.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/messages/account_connected_other.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/messages/account_connected_updated.txt +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/messages/account_disconnected.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/signup.html +29 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/snippets/login.html +15 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/snippets/login_extra.html +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/socialaccount/snippets/provider_list.html +18 -0
- django_allauth_async-65.16.1.1/allauth/templates/usersessions/base_manage.html +1 -0
- django_allauth_async-65.16.1.1/allauth/templates/usersessions/messages/sessions_logged_out.txt +2 -0
- django_allauth_async-65.16.1.1/allauth/templates/usersessions/usersession_list.html +81 -0
- django_allauth_async-65.16.1.1/allauth/templatetags/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/templatetags/allauth.py +145 -0
- django_allauth_async-65.16.1.1/allauth/urls.py +71 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/adapter.py +22 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/admin.py +14 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/app_settings.py +38 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/apps.py +24 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/forms.py +14 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/internal/flows/__init__.py +4 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/internal/flows/sessions.py +22 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/middleware.py +21 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/migrations/0001_initial.py +55 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/migrations/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/models.py +131 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/signals.py +25 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/urls.py +8 -0
- django_allauth_async-65.16.1.1/allauth/usersessions/views.py +52 -0
- django_allauth_async-65.16.1.1/allauth/utils.py +220 -0
- django_allauth_async-65.16.1.1/allauth_async/__init__.py +35 -0
- django_allauth_async-65.16.1.1/allauth_async/_upstream_manifest.json +691 -0
- django_allauth_async-65.16.1.1/allauth_async/account/__init__.py +1 -0
- django_allauth_async-65.16.1.1/allauth_async/account/adapter.py +569 -0
- django_allauth_async-65.16.1.1/allauth_async/account/auth_backends.py +197 -0
- django_allauth_async-65.16.1.1/allauth_async/account/authentication.py +17 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/__init__.py +1 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/__init__.py +34 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/email_verification.py +432 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/login.py +102 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/login_by_code.py +244 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/logout.py +32 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/manage_email.py +147 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/password_change.py +66 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/password_reset.py +105 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/reauthentication.py +149 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/signup.py +64 -0
- django_allauth_async-65.16.1.1/allauth_async/account/internal/stagekit.py +70 -0
- django_allauth_async-65.16.1.1/allauth_async/account/managers.py +58 -0
- django_allauth_async-65.16.1.1/allauth_async/account/middleware.py +77 -0
- django_allauth_async-65.16.1.1/allauth_async/account/models.py +152 -0
- django_allauth_async-65.16.1.1/allauth_async/account/stages.py +257 -0
- django_allauth_async-65.16.1.1/allauth_async/account/utils.py +216 -0
- django_allauth_async-65.16.1.1/allauth_async/core/__init__.py +1 -0
- django_allauth_async-65.16.1.1/allauth_async/core/httpkit.py +126 -0
- django_allauth_async-65.16.1.1/allauth_async/core/internal/__init__.py +1 -0
- django_allauth_async-65.16.1.1/allauth_async/core/internal/adapterkit.py +50 -0
- django_allauth_async-65.16.1.1/allauth_async/core/internal/ratelimit.py +154 -0
- django_allauth_async-65.16.1.1/allauth_async/core/ratelimit.py +65 -0
- django_allauth_async-65.16.1.1/allauth_async/decorators.py +31 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/account/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/account/inputs.py +462 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/account/response.py +44 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/account/urls.py +140 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/account/views.py +267 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/adapter.py +107 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/base/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/base/response.py +211 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/base/urls.py +21 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/base/views.py +91 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/internal/authkit.py +49 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/internal/decorators.py +46 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/internal/restkit/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/internal/restkit/inputs.py +70 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/internal/restkit/views.py +60 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/mfa/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/mfa/inputs.py +341 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/mfa/urls.py +120 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/mfa/views.py +380 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/forms.py +68 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/inputs.py +201 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/internal.py +94 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/response.py +130 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/urls.py +68 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/views.py +136 -0
- django_allauth_async-65.16.1.1/allauth_async/headless/urls.py +113 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/adapter.py +154 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/base/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/base/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/base/internal/flows.py +152 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/internal/flows/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/internal/flows/add.py +27 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/internal/flows/trust.py +70 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/models.py +48 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/recovery_codes/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/recovery_codes/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/recovery_codes/internal/auth.py +119 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/recovery_codes/internal/flows.py +106 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/stages.py +77 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/totp/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/totp/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/totp/internal/auth.py +74 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/totp/internal/flows.py +58 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/utils.py +16 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/webauthn/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/webauthn/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/webauthn/internal/auth.py +225 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/webauthn/internal/flows.py +151 -0
- django_allauth_async-65.16.1.1/allauth_async/mfa/webauthn/stages.py +26 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/adapter.py +275 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/helpers.py +84 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/flows/__init__.py +15 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/flows/connect.py +170 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/flows/email_authentication.py +38 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/flows/login.py +124 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/flows/signup.py +191 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/jwtkit.py +80 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/statekit.py +66 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/models.py +243 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/__init__.py +71 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/digitalocean.py +25 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/gitea.py +27 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/github.py +42 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/gitlab.py +86 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/google.py +73 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/microsoft.py +82 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/nextcloud.py +63 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/oauth2/client.py +84 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/oauth2/provider.py +113 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/oauth2/views.py +241 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/okta.py +29 -0
- django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/openid_connect.py +139 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/conftest.py +106 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/headless/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/headless/conftest.py +5 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/headless/test_account_endpoints.py +308 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/headless/test_fail_closed_gates.py +110 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/headless/test_parity.py +510 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/headless/test_ratelimit_placement.py +198 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/headless/urls.py +18 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/headless/utils.py +83 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/mfa/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/mfa/conftest.py +162 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_adapter_contract.py +52 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_parity.py +231 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_reauthentication.py +116 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_recovery_codes.py +147 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_totp.py +189 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_trust.py +169 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_webauthn.py +244 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/__init__.py +0 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/conftest.py +145 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_github_e2e.py +231 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_headless.py +292 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_lookup_save_parity.py +164 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_oauth2_client.py +146 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_openid_connect.py +199 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_urls.py +44 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/urls.py +15 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_adapter.py +199 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_auth_backends.py +121 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_email_verification.py +137 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_flows_login.py +121 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_flows_signup.py +74 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_login_by_code.py +62 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_middleware.py +84 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_models.py +93 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_ratelimit.py +79 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_reauthentication_resume.py +53 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_stages.py +267 -0
- django_allauth_async-65.16.1.1/allauth_async/tests/test_twin_override_guard.py +226 -0
- django_allauth_async-65.16.1.1/allauth_async/urls.py +211 -0
- django_allauth_async-65.16.1.1/devenv.lock +103 -0
- django_allauth_async-65.16.1.1/devenv.nix +32 -0
- django_allauth_async-65.16.1.1/devenv.yaml +15 -0
- django_allauth_async-65.16.1.1/django_allauth_async.egg-info/PKG-INFO +285 -0
- django_allauth_async-65.16.1.1/django_allauth_async.egg-info/SOURCES.txt +2060 -0
- django_allauth_async-65.16.1.1/django_allauth_async.egg-info/dependency_links.txt +1 -0
- django_allauth_async-65.16.1.1/django_allauth_async.egg-info/requires.txt +31 -0
- django_allauth_async-65.16.1.1/django_allauth_async.egg-info/top_level.txt +2 -0
- django_allauth_async-65.16.1.1/docs/Makefile +153 -0
- django_allauth_async-65.16.1.1/docs/account/adapter.rst +5 -0
- django_allauth_async-65.16.1.1/docs/account/advanced.rst +115 -0
- django_allauth_async-65.16.1.1/docs/account/configuration.rst +410 -0
- django_allauth_async-65.16.1.1/docs/account/decorators.rst +26 -0
- django_allauth_async-65.16.1.1/docs/account/email.rst +40 -0
- django_allauth_async-65.16.1.1/docs/account/forms.rst +218 -0
- django_allauth_async-65.16.1.1/docs/account/index.rst +17 -0
- django_allauth_async-65.16.1.1/docs/account/introduction.rst +20 -0
- django_allauth_async-65.16.1.1/docs/account/phone.rst +95 -0
- django_allauth_async-65.16.1.1/docs/account/rate_limits.rst +52 -0
- django_allauth_async-65.16.1.1/docs/account/signals.rst +59 -0
- django_allauth_async-65.16.1.1/docs/account/templates.rst +25 -0
- django_allauth_async-65.16.1.1/docs/account/views.rst +103 -0
- django_allauth_async-65.16.1.1/docs/common/admin.rst +29 -0
- django_allauth_async-65.16.1.1/docs/common/configuration.rst +12 -0
- django_allauth_async-65.16.1.1/docs/common/email.rst +27 -0
- django_allauth_async-65.16.1.1/docs/common/index.rst +12 -0
- django_allauth_async-65.16.1.1/docs/common/messages.rst +8 -0
- django_allauth_async-65.16.1.1/docs/common/rate_limits.rst +86 -0
- django_allauth_async-65.16.1.1/docs/common/templates.rst +195 -0
- django_allauth_async-65.16.1.1/docs/conf.py +294 -0
- django_allauth_async-65.16.1.1/docs/faq.rst +103 -0
- django_allauth_async-65.16.1.1/docs/headless/adapter.rst +5 -0
- django_allauth_async-65.16.1.1/docs/headless/api.rst +16 -0
- django_allauth_async-65.16.1.1/docs/headless/configuration.rst +52 -0
- django_allauth_async-65.16.1.1/docs/headless/cors.rst +33 -0
- django_allauth_async-65.16.1.1/docs/headless/faq.rst +17 -0
- django_allauth_async-65.16.1.1/docs/headless/index.rst +13 -0
- django_allauth_async-65.16.1.1/docs/headless/installation.rst +45 -0
- django_allauth_async-65.16.1.1/docs/headless/introduction.rst +7 -0
- django_allauth_async-65.16.1.1/docs/headless/openapi-specification/index.html +11 -0
- django_allauth_async-65.16.1.1/docs/headless/token-strategies/abstract-strategy.rst +9 -0
- django_allauth_async-65.16.1.1/docs/headless/token-strategies/index.rst +9 -0
- django_allauth_async-65.16.1.1/docs/headless/token-strategies/introduction.rst +21 -0
- django_allauth_async-65.16.1.1/docs/headless/token-strategies/jwt-tokens.rst +152 -0
- django_allauth_async-65.16.1.1/docs/headless/token-strategies/session-tokens.rst +69 -0
- django_allauth_async-65.16.1.1/docs/idp/index.rst +11 -0
- django_allauth_async-65.16.1.1/docs/idp/openid-connect/adapter.rst +5 -0
- django_allauth_async-65.16.1.1/docs/idp/openid-connect/clients.rst +62 -0
- django_allauth_async-65.16.1.1/docs/idp/openid-connect/configuration.rst +52 -0
- django_allauth_async-65.16.1.1/docs/idp/openid-connect/index.rst +13 -0
- django_allauth_async-65.16.1.1/docs/idp/openid-connect/installation.rst +44 -0
- django_allauth_async-65.16.1.1/docs/idp/openid-connect/integrations.rst +59 -0
- django_allauth_async-65.16.1.1/docs/idp/openid-connect/introduction.rst +21 -0
- django_allauth_async-65.16.1.1/docs/idp/openid-connect/views.rst +43 -0
- django_allauth_async-65.16.1.1/docs/index.rst +31 -0
- django_allauth_async-65.16.1.1/docs/installation/examples.rst +28 -0
- django_allauth_async-65.16.1.1/docs/installation/index.rst +10 -0
- django_allauth_async-65.16.1.1/docs/installation/quickstart.rst +234 -0
- django_allauth_async-65.16.1.1/docs/installation/requirements.rst +18 -0
- django_allauth_async-65.16.1.1/docs/introduction/index.rst +32 -0
- django_allauth_async-65.16.1.1/docs/mfa/adapter.rst +5 -0
- django_allauth_async-65.16.1.1/docs/mfa/configuration.rst +100 -0
- django_allauth_async-65.16.1.1/docs/mfa/django-allauth-2fa.rst +40 -0
- django_allauth_async-65.16.1.1/docs/mfa/forms.rst +101 -0
- django_allauth_async-65.16.1.1/docs/mfa/index.rst +12 -0
- django_allauth_async-65.16.1.1/docs/mfa/introduction.rst +35 -0
- django_allauth_async-65.16.1.1/docs/mfa/signals.rst +22 -0
- django_allauth_async-65.16.1.1/docs/mfa/webauthn.rst +22 -0
- django_allauth_async-65.16.1.1/docs/project/contributing.rst +6 -0
- django_allauth_async-65.16.1.1/docs/project/funding.rst +7 -0
- django_allauth_async-65.16.1.1/docs/project/index.rst +8 -0
- django_allauth_async-65.16.1.1/docs/project/support.rst +6 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2012.rst +358 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2013.rst +427 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2014.rst +124 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2015.rst +211 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2016.rst +162 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2017.rst +149 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2018.rst +92 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2019.rst +93 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2020.rst +66 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2021.rst +54 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2022.rst +129 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2023.rst +386 -0
- django_allauth_async-65.16.1.1/docs/release-notes/2024.rst +599 -0
- django_allauth_async-65.16.1.1/docs/release-notes/history.rst +115 -0
- django_allauth_async-65.16.1.1/docs/release-notes/index.rst +20 -0
- django_allauth_async-65.16.1.1/docs/release-notes/recent.rst +1 -0
- django_allauth_async-65.16.1.1/docs/requirements.txt +2 -0
- django_allauth_async-65.16.1.1/docs/settings.py +36 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/adapter.rst +5 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/advanced.rst +108 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/configuration.rst +99 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/forms.rst +73 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/index.rst +16 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/introduction.rst +18 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/provider_configuration.rst +78 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/23andme.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/500px.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/agave.rst +23 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/amazon.rst +11 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/amazon_cognito.rst +30 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/apple.rst +60 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/atlassian.rst +56 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/auth0.rst +20 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/authelia.rst +27 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/authentiq.rst +24 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/baidu.rst +6 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/basecamp.rst +11 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/battlenet.rst +39 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/bitbucket.rst +13 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/box.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/cern.rst +30 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/cilogon.rst +10 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/clever.rst +7 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/dataporten.rst +7 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/daum.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/digitalocean.rst +22 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/dingtalk.rst +21 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/discogs.rst +29 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/discord.rst +12 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/doximity.rst +11 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/draugiem.rst +11 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/drip.rst +13 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/dropbox.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/dwolla.rst +23 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/edmodo.rst +23 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/edx.rst +16 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/eventbrite.rst +17 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/eveonline.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/evernote.rst +12 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/exist.rst +35 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/facebook.rst +136 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/feishu.rst +13 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/figma.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/flickr.rst +21 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/frontier.rst +43 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/fxa.rst +34 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/gitea.rst +23 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/github.rst +37 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/gitlab.rst +37 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/globus.rst +24 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/google.rst +119 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/gumroad.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/hubspot.rst +11 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/index.rst +156 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/instagram.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/jupyterhub.rst +18 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/kakao.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/keycloak.rst +28 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/lemonldap.rst +29 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/lichess.rst +19 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/line.rst +23 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/linkedin.rst +29 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/mailchimp.rst +58 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/mailcow.rst +22 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/mediawiki.rst +46 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/microsoft.rst +61 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/miro.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/naver.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/netiq.rst +15 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/nextcloud.rst +25 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/notion.rst +14 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/oauth2.rst +47 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/odnoklassniki.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/okta.rst +14 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/openid.rst +83 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/openid_connect.rst +62 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/openstreetmap.rst +34 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/orcid.rst +17 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/patreon.rst +28 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/paypal.rst +27 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/pinterest.rst +37 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/pocket.rst +5 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/questrade.rst +9 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/quickbooks.rst +26 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/reddit.rst +29 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/salesforce.rst +22 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/saml.rst +205 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/sharefile.rst +32 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/shopify.rst +46 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/slack.rst +11 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/snapchat.rst +11 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/soundcloud.rst +37 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/stackexchange.rst +19 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/steam.rst +16 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/stocktwits.rst +9 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/strava.rst +16 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/stripe.rst +23 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/telegram.rst +31 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/tiktok.rst +21 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/trainingpeaks.rst +25 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/trello.rst +28 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/tumblr_oauth2.rst +61 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/twitch.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/twitter.rst +48 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/twitter_oauth2.rst +43 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/untappd.rst +41 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/vimeo.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/vimeo_oauth2.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/vk.rst +46 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/wahoo.rst +27 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/weibo.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/weixin.rst +25 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/windowslive.rst +15 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/xing.rst +8 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/yahoo.rst +17 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/yandex.rst +12 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/ynab.rst +21 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/zoho.rst +10 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/providers/zoom.rst +10 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/signals.rst +28 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/templates.rst +48 -0
- django_allauth_async-65.16.1.1/docs/socialaccount/views.rst +12 -0
- django_allauth_async-65.16.1.1/docs/usersessions/adapter.rst +5 -0
- django_allauth_async-65.16.1.1/docs/usersessions/configuration.rst +16 -0
- django_allauth_async-65.16.1.1/docs/usersessions/index.rst +10 -0
- django_allauth_async-65.16.1.1/docs/usersessions/installation.rst +18 -0
- django_allauth_async-65.16.1.1/docs/usersessions/introduction.rst +6 -0
- django_allauth_async-65.16.1.1/docs/usersessions/signals.rst +8 -0
- django_allauth_async-65.16.1.1/examples/react-spa/Makefile +7 -0
- django_allauth_async-65.16.1.1/examples/react-spa/README.org +99 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/Dockerfile +10 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/__init__.py +0 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/asgi.py +17 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/drf_demo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/drf_demo/serializers.py +6 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/drf_demo/urls.py +25 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/drf_demo/views.py +27 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/ninja_demo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/ninja_demo/urls.py +8 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/ninja_demo/views.py +12 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/settings.py +162 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/urls.py +11 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/wsgi.py +8 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/manage.py +22 -0
- django_allauth_async-65.16.1.1/examples/react-spa/backend/requirements.txt +5 -0
- django_allauth_async-65.16.1.1/examples/react-spa/docker-compose.dev.yml +4 -0
- django_allauth_async-65.16.1.1/examples/react-spa/docker-compose.yml +36 -0
- django_allauth_async-65.16.1.1/examples/react-spa/e2e.spec.js +146 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/Dockerfile +10 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/package-lock.json +18584 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/package.json +41 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/public/css/style.css +25 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/public/img/allauth.svg +966 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/public/img/app.svg +78 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/public/img/react.svg +9 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/public/index.html +23 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/App.js +12 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/Calculator.js +81 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/Home.js +47 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/NavBar.js +61 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/Root.js +23 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/Router.js +218 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/AuthenticateFlow.js +61 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ChangeEmail.js +143 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ChangePassword.js +56 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ConfirmLoginCode.js +43 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ConfirmPasswordResetCode.js +45 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/Login.js +57 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/Logout.js +33 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/Reauthenticate.js +34 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ReauthenticateFlow.js +62 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/RequestLoginCode.js +41 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/RequestPasswordReset.js +49 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ResetPassword.js +81 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/Signup.js +64 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/VerificationEmailSent.js +8 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/VerifyEmail.js +54 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/VerifyEmailByCode.js +40 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/auth/AuthContext.js +53 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/auth/hooks.js +104 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/auth/index.js +3 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/auth/routing.js +109 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/components/Button.js +3 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/components/FormErrors.js +10 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/index.js +11 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/init.js +9 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/lib/allauth.js +373 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/lib/django.js +18 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ActivateTOTP.js +53 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AddWebAuthn.js +60 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AuthenticateCode.js +40 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AuthenticateFlow.js +43 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AuthenticateRecoveryCodes.js +10 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AuthenticateTOTP.js +10 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AuthenticateWebAuthn.js +34 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/CreateSignupPasskey.js +56 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/DeactivateTOTP.js +32 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/GenerateRecoveryCodes.js +47 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ListWebAuthn.js +117 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/MFAOverview.js +53 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ReauthenticateCode.js +34 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ReauthenticateRecoveryCodes.js +9 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ReauthenticateTOTP.js +9 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ReauthenticateWebAuthn.js +35 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/RecoveryCodes.js +24 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/SignupByPasskey.js +39 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/Trust.js +36 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/WebAuthnLoginButton.js +29 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/socialaccount/GoogleOneTap.js +58 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/socialaccount/ManageProviders.js +72 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/socialaccount/ProviderCallback.js +30 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/socialaccount/ProviderList.js +26 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/socialaccount/ProviderSignup.js +38 -0
- django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/usersessions/Sessions.js +73 -0
- django_allauth_async-65.16.1.1/examples/react-spa/traefik.toml +43 -0
- django_allauth_async-65.16.1.1/examples/regular-django/.dockerignore +10 -0
- django_allauth_async-65.16.1.1/examples/regular-django/Dockerfile +15 -0
- django_allauth_async-65.16.1.1/examples/regular-django/Makefile +15 -0
- django_allauth_async-65.16.1.1/examples/regular-django/README.org +43 -0
- django_allauth_async-65.16.1.1/examples/regular-django/db/.gitignore +1 -0
- django_allauth_async-65.16.1.1/examples/regular-django/docker-compose.yml +18 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/__init__.py +0 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/asgi.py +8 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/settings.py +252 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/429.html +11 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/account/base_manage_email.html +2 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/account/base_manage_password.html +2 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/account/base_manage_phone.html +2 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/alert.html +6 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/badge.html +19 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/button.html +31 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/button__entrance.html +6 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/button_group.html +5 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/field.html +99 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/fields.html +13 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/form.html +14 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/form__entrance.html +2 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/h1.html +5 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/h1__entrance.html +5 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/h2__entrance.html +5 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/img.html +5 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/panel.html +17 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/provider.html +6 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/provider_list.html +5 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/table.html +5 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/layouts/base.html +91 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/layouts/entrance.html +26 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/layouts/manage.html +68 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/index.html +9 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/mfa/base_manage.html +2 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/profile.html +9 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/socialaccount/base_manage.html +2 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/templates/usersessions/base_manage.html +2 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/urls.py +18 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/users/__init__.py +0 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/users/allauth.py +47 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/users/apps.py +8 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/users/migrations/0001_initial.py +134 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/users/migrations/__init__.py +0 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/users/models.py +10 -0
- django_allauth_async-65.16.1.1/examples/regular-django/example/wsgi.py +8 -0
- django_allauth_async-65.16.1.1/examples/regular-django/manage.py +11 -0
- django_allauth_async-65.16.1.1/examples/regular-django/requirements.txt +1 -0
- django_allauth_async-65.16.1.1/manage.py +10 -0
- django_allauth_async-65.16.1.1/mise.toml +9 -0
- django_allauth_async-65.16.1.1/noxfile.py +125 -0
- django_allauth_async-65.16.1.1/package-lock.json +4803 -0
- django_allauth_async-65.16.1.1/package.json +11 -0
- django_allauth_async-65.16.1.1/pyproject.toml +131 -0
- django_allauth_async-65.16.1.1/pytest.ini +3 -0
- django_allauth_async-65.16.1.1/requirements-dev.txt +38 -0
- django_allauth_async-65.16.1.1/scripts/ack_drift.py +80 -0
- django_allauth_async-65.16.1.1/scripts/check_drift.py +63 -0
- django_allauth_async-65.16.1.1/setup.cfg +8 -0
- django_allauth_async-65.16.1.1/tests/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/account/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/account/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/account/internal/test_emailkit.py +25 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_adapter.py +96 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_ajax.py +75 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_auth_backends.py +110 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_change_email.py +576 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_change_password.py +104 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_commands.py +7 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_decorators.py +41 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_email_verification.py +375 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_email_verification_by_code.py +340 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_login.py +349 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_login_by_code.py +262 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_logout.py +64 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_middleware.py +39 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_models.py +32 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_phone.py +299 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_ratelimit.py +12 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_reauthentication.py +63 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_reset_password.py +360 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_reset_password_by_code.py +96 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_security.py +41 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_signup.py +470 -0
- django_allauth_async-65.16.1.1/tests/apps/account/test_utils.py +154 -0
- django_allauth_async-65.16.1.1/tests/apps/core/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/core/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/core/internal/test_cryptokit.py +37 -0
- django_allauth_async-65.16.1.1/tests/apps/core/internal/test_httpkit.py +46 -0
- django_allauth_async-65.16.1.1/tests/apps/core/internal/test_modelkit.py +97 -0
- django_allauth_async-65.16.1.1/tests/apps/core/internal/test_ratelimit.py +40 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_change_email.py +241 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_change_password.py +223 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_email_verification.py +107 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_email_verification_by_code.py +385 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_login.py +218 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_login_by_code.py +219 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_phone.py +382 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_reauthentication.py +55 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_reset_password.py +158 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_reset_password_by_code.py +210 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_session.py +35 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/account/test_signup.py +244 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/base/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/base/test_views.py +13 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/conftest.py +63 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/contrib/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/contrib/ninja/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/contrib/ninja/test_security.py +18 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/contrib/rest_framework/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/contrib/rest_framework/test_authentication.py +20 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/internal/test_authkit.py +24 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/mfa/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/mfa/test_recovery_codes.py +74 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/mfa/test_totp.py +118 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/mfa/test_trust.py +86 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/mfa/test_views.py +123 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/mfa/test_webauthn.py +284 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/socialaccount/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/socialaccount/test_inputs.py +37 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/socialaccount/test_views.py +527 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/spec/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/spec/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/spec/internal/test_openapikit.py +85 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/spec/test_views.py +11 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/tokens/test_jwttokenstrategy.py +329 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/tokens/test_tokens.py +35 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/usersessions/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/headless/usersessions/test_views.py +29 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/conftest.py +102 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/contrib/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/contrib/ninja/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/contrib/ninja/test_views.py +34 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/contrib/rest_framework/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/contrib/rest_framework/test_views.py +35 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/internal/oauthlib/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/internal/oauthlib/test_request_validator.py +26 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/internal/oauthlib/test_utils.py +18 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_authorization.py +459 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_device.py +210 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_rp_initiated_logout.py +114 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_tokens.py +105 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_views.py +226 -0
- django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_wildcards.py +127 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/base/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/base/test_adapter.py +14 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/base/test_trust.py +84 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/base/test_trust_fingerprint.py +52 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/base/test_views.py +91 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/recovery_codes/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/recovery_codes/test_auth.py +37 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/recovery_codes/test_views.py +122 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/totp/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/totp/test_unit.py +44 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/totp/test_views.py +249 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/webauthn/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/mfa/webauthn/test_views.py +222 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/base.py +499 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/conftest.py +106 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/internal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/internal/test_jwtkit.py +36 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/internal/test_statekit.py +57 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/agave/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/agave/tests.py +37 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/amazon/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/amazon/tests.py +27 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/amazon_cognito/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/amazon_cognito/tests.py +92 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/apple/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/apple/tests.py +266 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/asana/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/asana/tests.py +23 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/atlassian/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/atlassian/tests.py +36 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/auth0/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/auth0/tests.py +29 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/authentiq/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/authentiq/tests.py +106 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/baidu/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/baidu/tests.py +22 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/base/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/base/test_provider.py +71 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/basecamp/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/basecamp/tests.py +49 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/battlenet/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/battlenet/tests.py +74 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/bitbucket_oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/bitbucket_oauth2/tests.py +110 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/bitly/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/bitly/tests.py +36 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/box/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/box/tests.py +39 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/cilogon/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/cilogon/tests.py +28 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/clever/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/clever/tests.py +56 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/coinbase/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/coinbase/tests.py +31 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dataporten/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dataporten/tests.py +77 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/daum/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/daum/tests.py +28 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/digitalocean/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/digitalocean/tests.py +47 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dingtalk/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dingtalk/tests.py +32 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/discogs/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/discogs/tests.py +37 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/discord/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/discord/tests.py +100 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/disqus/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/disqus/tests.py +57 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/douban/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/douban/tests.py +33 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/doximity/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/doximity/tests.py +71 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/draugiem/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/draugiem/tests.py +145 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/drip/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/drip/tests.py +26 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dropbox/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dropbox/tests.py +41 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dummy/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dummy/tests.py +23 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dwolla/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dwolla/tests.py +37 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/edmodo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/edmodo/tests.py +50 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/edx/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/edx/tests.py +52 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/eventbrite/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/eventbrite/tests.py +35 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/eveonline/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/eveonline/tests.py +28 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/evernote/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/evernote/tests.py +24 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/exist/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/exist/tests.py +40 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/facebook/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/facebook/tests.py +193 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/feedly/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/feedly/tests.py +34 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/feishu/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/feishu/tests.py +48 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/figma/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/figma/tests.py +27 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/fivehundredpx/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/fivehundredpx/tests.py +86 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/flickr/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/flickr/tests.py +120 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/foursquare/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/foursquare/tests.py +74 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/frontier/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/frontier/tests.py +29 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/fxa/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/fxa/tests.py +24 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gitea/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gitea/tests.py +57 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/github/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/github/tests.py +122 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gitlab/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gitlab/tests.py +107 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/globus/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/globus/tests.py +32 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/google/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/google/tests.py +354 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gumroad/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gumroad/tests.py +30 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/hubic/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/hubic/tests.py +39 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/hubspot/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/hubspot/tests.py +33 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/instagram/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/instagram/tests.py +34 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/jupyterhub/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/jupyterhub/tests.py +31 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/kakao/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/kakao/tests.py +63 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/lemonldap/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/lemonldap/tests.py +27 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/lichess/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/lichess/tests.py +91 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/line/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/line/tests.py +26 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/linkedin_oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/linkedin_oauth2/tests.py +553 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailchimp/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailchimp/tests.py +39 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailcow/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailcow/tests.py +33 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailru/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailru/tests.py +27 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mediawiki/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mediawiki/tests.py +37 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/meetup/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/meetup/tests.py +42 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/microsoft/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/microsoft/tests.py +62 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/miro/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/miro/tests.py +33 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/naver/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/naver/tests.py +38 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/netiq/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/netiq/tests.py +31 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/nextcloud/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/nextcloud/tests.py +69 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/notion/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/notion/tests.py +94 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/oauth2/tests/test_views.py +72 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/odnoklassniki/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/odnoklassniki/tests.py +30 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/okta/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/okta/tests.py +34 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openid/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openid/tests.py +194 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openid_connect/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openid_connect/tests.py +37 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openstreetmap/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openstreetmap/tests.py +85 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/orcid/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/orcid/tests.py +391 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/patreon/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/patreon/tests.py +65 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/paypal/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/paypal/tests.py +29 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/pinterest/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/pinterest/tests.py +55 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/pocket/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/pocket/tests.py +51 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/questrade/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/questrade/tests.py +20 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/quickbooks/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/quickbooks/tests.py +28 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/reddit/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/reddit/tests.py +23 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/robinhood/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/robinhood/tests.py +25 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/salesforce/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/salesforce/tests.py +70 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/saml/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/saml/conftest.py +183 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/saml/tests.py +272 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/sharefile/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/sharefile/tests.py +31 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/shopify/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/shopify/tests.py +170 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/slack/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/slack/tests.py +35 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/snapchat/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/snapchat/tests.py +32 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/soundcloud/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/soundcloud/tests.py +48 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/spotify/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/spotify/tests.py +45 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stackexchange/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stackexchange/tests.py +51 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/steam/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/steam/tests.py +61 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stocktwits/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stocktwits/tests.py +37 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/strava/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/strava/tests.py +101 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stripe/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stripe/tests.py +60 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/telegram/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/telegram/tests.py +60 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tiktok/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tiktok/tests.py +32 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/trainingpeaks/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/trainingpeaks/tests.py +85 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/trello/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/trello/tests.py +24 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tumblr/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tumblr/tests.py +50 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tumblr_oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tumblr_oauth2/tests.py +50 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twentythreeandme/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twentythreeandme/tests.py +39 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitch/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitch/tests.py +90 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitter/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitter/tests.py +47 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitter_oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitter_oauth2/tests.py +32 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/untappd/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/untappd/tests.py +105 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vimeo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vimeo/tests.py +45 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vimeo_oauth2/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vimeo_oauth2/tests.py +38 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vk/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vk/tests.py +46 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/wahoo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/wahoo/tests.py +34 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/weibo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/weibo/tests.py +36 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/weixin/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/weixin/tests.py +41 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/windowslive/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/windowslive/tests.py +37 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/xing/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/xing/tests.py +48 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/yahoo/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/yahoo/tests.py +29 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/yandex/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/yandex/tests.py +45 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/ynab/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/ynab/tests.py +71 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/zoho/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/zoho/tests.py +23 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/zoom/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/zoom/tests.py +51 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_adapter.py +60 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_connect.py +99 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_login.py +152 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_phone.py +64 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_registry.py +60 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_signup.py +471 -0
- django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_utils.py +25 -0
- django_allauth_async-65.16.1.1/tests/apps/test_utils.py +66 -0
- django_allauth_async-65.16.1.1/tests/apps/usersessions/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/apps/usersessions/test_middleware.py +93 -0
- django_allauth_async-65.16.1.1/tests/apps/usersessions/test_views.py +62 -0
- django_allauth_async-65.16.1.1/tests/conftest.py +515 -0
- django_allauth_async-65.16.1.1/tests/mocking.py +66 -0
- django_allauth_async-65.16.1.1/tests/projects/account_only/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/account_only/settings.py +103 -0
- django_allauth_async-65.16.1.1/tests/projects/account_only/templates/429.html +1 -0
- django_allauth_async-65.16.1.1/tests/projects/account_only/urls.py +14 -0
- django_allauth_async-65.16.1.1/tests/projects/common/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/common/account/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/common/account/urls.py +12 -0
- django_allauth_async-65.16.1.1/tests/projects/common/account/views.py +8 -0
- django_allauth_async-65.16.1.1/tests/projects/common/adapters.py +52 -0
- django_allauth_async-65.16.1.1/tests/projects/common/headless/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/common/headless/ninja/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/common/headless/ninja/urls.py +8 -0
- django_allauth_async-65.16.1.1/tests/projects/common/headless/ninja/views.py +14 -0
- django_allauth_async-65.16.1.1/tests/projects/common/headless/rest_framework/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/common/headless/rest_framework/urls.py +8 -0
- django_allauth_async-65.16.1.1/tests/projects/common/headless/rest_framework/views.py +16 -0
- django_allauth_async-65.16.1.1/tests/projects/common/headless/urls.py +7 -0
- django_allauth_async-65.16.1.1/tests/projects/common/idp/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/common/idp/ninja/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/common/idp/ninja/urls.py +8 -0
- django_allauth_async-65.16.1.1/tests/projects/common/idp/ninja/views.py +11 -0
- django_allauth_async-65.16.1.1/tests/projects/common/idp/rest_framework/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/common/idp/rest_framework/urls.py +8 -0
- django_allauth_async-65.16.1.1/tests/projects/common/idp/rest_framework/views.py +22 -0
- django_allauth_async-65.16.1.1/tests/projects/common/idp/urls.py +7 -0
- django_allauth_async-65.16.1.1/tests/projects/common/phone_stub.py +48 -0
- django_allauth_async-65.16.1.1/tests/projects/common/settings.py +191 -0
- django_allauth_async-65.16.1.1/tests/projects/common/templates/test_403_csrf.html +2 -0
- django_allauth_async-65.16.1.1/tests/projects/common/urls.py +8 -0
- django_allauth_async-65.16.1.1/tests/projects/headless_only/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/headless_only/settings.py +156 -0
- django_allauth_async-65.16.1.1/tests/projects/headless_only/urls.py +8 -0
- django_allauth_async-65.16.1.1/tests/projects/login_required_mw/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/login_required_mw/middleware.py +9 -0
- django_allauth_async-65.16.1.1/tests/projects/login_required_mw/settings.py +127 -0
- django_allauth_async-65.16.1.1/tests/projects/login_required_mw/templates/429.html +1 -0
- django_allauth_async-65.16.1.1/tests/projects/login_required_mw/urls.py +17 -0
- django_allauth_async-65.16.1.1/tests/projects/regular/__init__.py +0 -0
- django_allauth_async-65.16.1.1/tests/projects/regular/settings.py +127 -0
- django_allauth_async-65.16.1.1/tests/projects/regular/urls.py +17 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# http://editorconfig.org
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
[*]
|
|
5
|
+
charset = utf-8
|
|
6
|
+
indent_style = space
|
|
7
|
+
indent_size = 2
|
|
8
|
+
end_of_line = lf
|
|
9
|
+
insert_final_newline = true
|
|
10
|
+
trim_trailing_whitespace = true
|
|
11
|
+
|
|
12
|
+
[*.ini]
|
|
13
|
+
indent_size = 4
|
|
14
|
+
|
|
15
|
+
[*.py]
|
|
16
|
+
indent_size = 4
|
|
17
|
+
|
|
18
|
+
[*.html]
|
|
19
|
+
indent_size = 4
|
|
20
|
+
|
|
21
|
+
[Makefile]
|
|
22
|
+
indent_style = tab
|
|
23
|
+
indent_size = 8
|
|
24
|
+
|
|
25
|
+
[*.md]
|
|
26
|
+
insert_final_newline = false
|
|
27
|
+
trim_trailing_whitespace = false
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Submitting Pull Requests
|
|
2
|
+
|
|
3
|
+
## General
|
|
4
|
+
|
|
5
|
+
- [ ] Make sure you use [semantic commit messages](https://seesparkbox.com/foundry/semantic_commit_messages).
|
|
6
|
+
Examples: `"fix(google): Fixed foobar bug"`, `"feat(accounts): Added foobar feature"`.
|
|
7
|
+
- [ ] All Python code must formatted using Black, and clean from pep8 and isort issues.
|
|
8
|
+
- [ ] JavaScript code should adhere to [StandardJS](https://standardjs.com).
|
|
9
|
+
- [ ] If your changes are significant, please update `ChangeLog.rst`.
|
|
10
|
+
- [ ] If your change is substantial, feel free to add yourself to `AUTHORS`.
|
|
11
|
+
|
|
12
|
+
## Provider Specifics
|
|
13
|
+
|
|
14
|
+
In case you add a new provider:
|
|
15
|
+
|
|
16
|
+
- [ ] Make sure unit tests are available.
|
|
17
|
+
- [ ] Ensure your provider is tested by adding an entry over at `tests/projects/common/settings.py::INSTALLED_SOCIALACCOUNT_APPS`.
|
|
18
|
+
- [ ] Provide provider specific documentation at `docs/socialaccount/providers/<provider name>.rst`.
|
|
19
|
+
- [ ] Link to your provider specific documentation at `docs/insocialaccount/providers/index.rst`.
|
|
20
|
+
- [ ] Add an entry for your provider in the quickstart, over at `docs/installation/quickstart.rst::INSTALLED_APPS`.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# These are supported funding model platforms
|
|
2
|
+
|
|
3
|
+
github: pennersr
|
|
4
|
+
patreon: # Replace with a single Patreon username
|
|
5
|
+
open_collective: # Replace with a single Open Collective username
|
|
6
|
+
ko_fi: # Replace with a single Ko-fi username
|
|
7
|
+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
|
8
|
+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
|
9
|
+
liberapay: # Replace with a single Liberapay username
|
|
10
|
+
issuehunt: # Replace with a single IssueHunt username
|
|
11
|
+
otechie: # Replace with a single Otechie username
|
|
12
|
+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "Issue (when not using Codeberg)"
|
|
3
|
+
about: "\U0001F6D1 Please use https://codeberg.org/allauth/django-allauth/issues"
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# 🛑 Stop
|
|
11
|
+
|
|
12
|
+
The issue tracker has been moved to https://codeberg.org/allauth/django-allauth/issues.
|
|
13
|
+
Please submit your issue there.
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ main ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ main ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
test:
|
|
11
|
+
runs-on: ubuntu-24.04
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
include:
|
|
15
|
+
- python-version: "3.10"
|
|
16
|
+
debian-version: trixie
|
|
17
|
+
- python-version: "3.12"
|
|
18
|
+
debian-version: trixie
|
|
19
|
+
- python-version: "3.13"
|
|
20
|
+
debian-version: trixie
|
|
21
|
+
- python-version: "3.14"
|
|
22
|
+
debian-version: trixie
|
|
23
|
+
container:
|
|
24
|
+
image: python:${{ matrix.python-version }}-${{ matrix.debian-version }}
|
|
25
|
+
steps:
|
|
26
|
+
- uses: actions/checkout@v6
|
|
27
|
+
- name: Install dependencies
|
|
28
|
+
run: |
|
|
29
|
+
apt-get update
|
|
30
|
+
apt-get install -y --no-install-recommends gettext make
|
|
31
|
+
git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
|
32
|
+
- name: Install nox
|
|
33
|
+
run: pip install nox
|
|
34
|
+
- name: Run tests
|
|
35
|
+
run: nox -x --session "test-${{ matrix.python-version }}"
|
|
36
|
+
env:
|
|
37
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
38
|
+
|
|
39
|
+
docs:
|
|
40
|
+
runs-on: ubuntu-22.04
|
|
41
|
+
needs: []
|
|
42
|
+
strategy:
|
|
43
|
+
matrix:
|
|
44
|
+
python-version: [3.14]
|
|
45
|
+
container:
|
|
46
|
+
image: python:3.14-trixie
|
|
47
|
+
steps:
|
|
48
|
+
- uses: actions/checkout@v6
|
|
49
|
+
- name: Install nox
|
|
50
|
+
run: pip install nox
|
|
51
|
+
- name: Build docs
|
|
52
|
+
run: nox -x --session "docs"
|
|
53
|
+
|
|
54
|
+
lint:
|
|
55
|
+
runs-on: ubuntu-22.04
|
|
56
|
+
needs: []
|
|
57
|
+
strategy:
|
|
58
|
+
matrix:
|
|
59
|
+
python-version: [3.14]
|
|
60
|
+
container:
|
|
61
|
+
image: python:3.14-trixie
|
|
62
|
+
steps:
|
|
63
|
+
- uses: actions/checkout@v6
|
|
64
|
+
- name: Install nox
|
|
65
|
+
run: pip install nox
|
|
66
|
+
- name: Run linter
|
|
67
|
+
run: nox -x -t lint
|
|
68
|
+
|
|
69
|
+
standardjs:
|
|
70
|
+
runs-on: ubuntu-24.04
|
|
71
|
+
needs: []
|
|
72
|
+
strategy:
|
|
73
|
+
matrix:
|
|
74
|
+
python-version: [3.14]
|
|
75
|
+
container:
|
|
76
|
+
image: node:22-trixie
|
|
77
|
+
steps:
|
|
78
|
+
- uses: actions/checkout@v6
|
|
79
|
+
- name: Install standardjs dependencies
|
|
80
|
+
run: make ci-install-standardjs
|
|
81
|
+
- name: Run standardjs
|
|
82
|
+
run: make standardjs
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
*.pyc
|
|
2
|
+
*~
|
|
3
|
+
.idea
|
|
4
|
+
.project
|
|
5
|
+
.pydevproject
|
|
6
|
+
*.geany
|
|
7
|
+
docs/_build
|
|
8
|
+
build
|
|
9
|
+
dist
|
|
10
|
+
*.egg*
|
|
11
|
+
examples/**/local_settings.py
|
|
12
|
+
node_modules/
|
|
13
|
+
|
|
14
|
+
# Unit test / coverage reports
|
|
15
|
+
htmlcov/
|
|
16
|
+
.tox/
|
|
17
|
+
.coverage
|
|
18
|
+
.coverage.*
|
|
19
|
+
coverage.xml
|
|
20
|
+
.mypy_cache/
|
|
21
|
+
.nox/
|
|
22
|
+
|
|
23
|
+
.ropeproject/*
|
|
24
|
+
pep8.txt
|
|
25
|
+
*.bak
|
|
26
|
+
.#*
|
|
27
|
+
\#*
|
|
28
|
+
*.db
|
|
29
|
+
*.tmp
|
|
30
|
+
virtualenv
|
|
31
|
+
.DS_Store
|
|
32
|
+
|
|
33
|
+
*.prefs
|
|
34
|
+
*.mo
|
|
35
|
+
/.stfolder
|
|
36
|
+
.direnv/
|
|
37
|
+
examples/react-spa/docker-compose.override.yml
|
|
38
|
+
|
|
39
|
+
# Devenv
|
|
40
|
+
.devenv*
|
|
41
|
+
devenv.local.nix
|
|
42
|
+
|
|
43
|
+
# direnv
|
|
44
|
+
.direnv
|
|
45
|
+
|
|
46
|
+
# pre-commit
|
|
47
|
+
.pre-commit-config.yaml
|
|
48
|
+
/.agent-shell/
|
|
49
|
+
.venv
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# CI for the django-allauth-async fork.
|
|
2
|
+
#
|
|
3
|
+
# We deliberately test only the platform matrix GlitchTip runs (see README):
|
|
4
|
+
# Python 3.12/3.14 on the Django version pinned by requirements-dev.txt.
|
|
5
|
+
# Upstream's own CI covers the wider matrix for the pristine allauth package.
|
|
6
|
+
|
|
7
|
+
stages:
|
|
8
|
+
- lint
|
|
9
|
+
- test
|
|
10
|
+
- build
|
|
11
|
+
- publish
|
|
12
|
+
|
|
13
|
+
.python: &python
|
|
14
|
+
image: python:3.14
|
|
15
|
+
before_script:
|
|
16
|
+
- pip install --quiet -r requirements-dev.txt aiohttp
|
|
17
|
+
|
|
18
|
+
lint:
|
|
19
|
+
<<: *python
|
|
20
|
+
stage: lint
|
|
21
|
+
script:
|
|
22
|
+
# Lint only fork code; upstream code is linted upstream.
|
|
23
|
+
- pip install --quiet ruff
|
|
24
|
+
- ruff check allauth_async scripts
|
|
25
|
+
- ruff format --check allauth_async scripts
|
|
26
|
+
|
|
27
|
+
drift-check:
|
|
28
|
+
image: python:3.14
|
|
29
|
+
stage: lint
|
|
30
|
+
script:
|
|
31
|
+
- python scripts/check_drift.py
|
|
32
|
+
|
|
33
|
+
# Upstream's unmodified test suite must stay green: proves the merge state is
|
|
34
|
+
# sound and that allauth_async does not leak into upstream behavior.
|
|
35
|
+
upstream-tests:
|
|
36
|
+
<<: *python
|
|
37
|
+
stage: test
|
|
38
|
+
parallel:
|
|
39
|
+
matrix:
|
|
40
|
+
- PY: ["3.12", "3.14"]
|
|
41
|
+
image: python:$PY
|
|
42
|
+
script:
|
|
43
|
+
- pytest allauth tests
|
|
44
|
+
|
|
45
|
+
async-tests:
|
|
46
|
+
<<: *python
|
|
47
|
+
stage: test
|
|
48
|
+
parallel:
|
|
49
|
+
matrix:
|
|
50
|
+
- PY: ["3.12", "3.14"]
|
|
51
|
+
image: python:$PY
|
|
52
|
+
script:
|
|
53
|
+
# DJANGO_ALLOW_ASYNC_UNSAFE must NOT be set: a stray sync ORM call from an
|
|
54
|
+
# async path must raise SynchronousOnlyOperation, not silently pass.
|
|
55
|
+
- pytest allauth_async
|
|
56
|
+
|
|
57
|
+
build:
|
|
58
|
+
<<: *python
|
|
59
|
+
stage: build
|
|
60
|
+
script:
|
|
61
|
+
# Compile translations like upstream's release Makefile does — .mo files
|
|
62
|
+
# are not in git, and the wheel must ship them.
|
|
63
|
+
- apt-get update -qq && apt-get install -y -qq gettext
|
|
64
|
+
- (cd allauth && python ../manage.py compilemessages)
|
|
65
|
+
- pip install --quiet build
|
|
66
|
+
- python -m build
|
|
67
|
+
- python -c "
|
|
68
|
+
import zipfile, glob;
|
|
69
|
+
w = glob.glob('dist/*.whl')[0];
|
|
70
|
+
names = zipfile.ZipFile(w).namelist();
|
|
71
|
+
assert any(n.startswith('allauth/') for n in names), 'allauth missing';
|
|
72
|
+
assert any(n.startswith('allauth_async/') for n in names), 'allauth_async missing';
|
|
73
|
+
assert any('/templates/' in n for n in names), 'templates missing';
|
|
74
|
+
assert any(n.endswith('.mo') for n in names), 'compiled locales missing';
|
|
75
|
+
assert any('/static/' in n for n in names), 'static missing';
|
|
76
|
+
print(w, 'OK')"
|
|
77
|
+
artifacts:
|
|
78
|
+
paths:
|
|
79
|
+
- dist/
|
|
80
|
+
|
|
81
|
+
# Publishes via PyPI trusted publishing (OIDC) — no stored API token.
|
|
82
|
+
# The PyPI-side trusted publisher is registered for this project with
|
|
83
|
+
# top-level pipeline .gitlab-ci.yml and environment "release".
|
|
84
|
+
publish:
|
|
85
|
+
image: python:3.14
|
|
86
|
+
stage: publish
|
|
87
|
+
rules:
|
|
88
|
+
- if: '$CI_COMMIT_TAG =~ /^v\d+\./'
|
|
89
|
+
dependencies:
|
|
90
|
+
- build
|
|
91
|
+
id_tokens:
|
|
92
|
+
PYPI_ID_TOKEN:
|
|
93
|
+
aud: pypi
|
|
94
|
+
environment:
|
|
95
|
+
name: release
|
|
96
|
+
script:
|
|
97
|
+
- pip install --quiet twine
|
|
98
|
+
- |
|
|
99
|
+
api_token=$(python - <<'EOF'
|
|
100
|
+
import json, os, urllib.request
|
|
101
|
+
req = urllib.request.Request(
|
|
102
|
+
"https://pypi.org/_/oidc/mint-token",
|
|
103
|
+
data=json.dumps({"token": os.environ["PYPI_ID_TOKEN"]}).encode(),
|
|
104
|
+
headers={"Content-Type": "application/json"},
|
|
105
|
+
)
|
|
106
|
+
print(json.load(urllib.request.urlopen(req))["token"])
|
|
107
|
+
EOF
|
|
108
|
+
)
|
|
109
|
+
- twine upload -u __token__ -p "$api_token" dist/*
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Read the Docs configuration file for Sphinx projects
|
|
2
|
+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
3
|
+
|
|
4
|
+
# Required
|
|
5
|
+
version: 2
|
|
6
|
+
|
|
7
|
+
# Set the OS, Python version and other tools you might need
|
|
8
|
+
build:
|
|
9
|
+
os: ubuntu-22.04
|
|
10
|
+
tools:
|
|
11
|
+
python: "3.11"
|
|
12
|
+
|
|
13
|
+
# Build documentation in the "docs/" directory with Sphinx
|
|
14
|
+
sphinx:
|
|
15
|
+
configuration: docs/conf.py
|
|
16
|
+
|
|
17
|
+
# Optional but recommended, declare the Python requirements required
|
|
18
|
+
# to build your documentation
|
|
19
|
+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
|
|
20
|
+
python:
|
|
21
|
+
install:
|
|
22
|
+
- requirements: docs/requirements.txt
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
when:
|
|
2
|
+
- event: pull_request
|
|
3
|
+
- event: [push, tag, manual]
|
|
4
|
+
branch: main
|
|
5
|
+
|
|
6
|
+
steps:
|
|
7
|
+
test:
|
|
8
|
+
image: python:${PYTHON_VERSION}-${DEBIAN_VERSION}
|
|
9
|
+
commands:
|
|
10
|
+
- apt-get update
|
|
11
|
+
- apt-get install -y --no-install-recommends gettext make
|
|
12
|
+
- pip install nox
|
|
13
|
+
- nox -x --session "test-${PYTHON_VERSION}"
|
|
14
|
+
|
|
15
|
+
docs:
|
|
16
|
+
image: python:${PYTHON_VERSION}-${DEBIAN_VERSION}
|
|
17
|
+
commands:
|
|
18
|
+
- pip install nox
|
|
19
|
+
- nox -x --session "docs"
|
|
20
|
+
depends_on: []
|
|
21
|
+
when:
|
|
22
|
+
- matrix:
|
|
23
|
+
PYTHON_VERSION: 3.14
|
|
24
|
+
|
|
25
|
+
lint:
|
|
26
|
+
image: python:${PYTHON_VERSION}-${DEBIAN_VERSION}
|
|
27
|
+
commands:
|
|
28
|
+
- pip install nox
|
|
29
|
+
- nox -x -t lint
|
|
30
|
+
depends_on: []
|
|
31
|
+
when:
|
|
32
|
+
- matrix:
|
|
33
|
+
PYTHON_VERSION: 3.14
|
|
34
|
+
|
|
35
|
+
standardjs:
|
|
36
|
+
image: node:22-${DEBIAN_VERSION}
|
|
37
|
+
commands:
|
|
38
|
+
- make ci-install-standardjs
|
|
39
|
+
- make standardjs
|
|
40
|
+
depends_on: []
|
|
41
|
+
when:
|
|
42
|
+
- matrix:
|
|
43
|
+
PYTHON_VERSION: 3.14
|
|
44
|
+
|
|
45
|
+
matrix:
|
|
46
|
+
include:
|
|
47
|
+
# To cut down on CI pipeline duration, test oldest/latest Python only.
|
|
48
|
+
- PYTHON_VERSION: 3.10
|
|
49
|
+
DEBIAN_VERSION: trixie
|
|
50
|
+
- PYTHON_VERSION: 3.14
|
|
51
|
+
DEBIAN_VERSION: trixie
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
django-allauth was started by Raymond Penners
|
|
2
|
+
(<raymond.penners@intenct.nl> or @pennersr) in October 2010, inspired
|
|
3
|
+
by and partly based on existing projects such as Pinax (account app),
|
|
4
|
+
Django-Socialauth, django-socialregistration.
|
|
5
|
+
|
|
6
|
+
# Contributors
|
|
7
|
+
|
|
8
|
+
Aarni Koskela
|
|
9
|
+
Aaron van Derlip
|
|
10
|
+
Abhinav Johri
|
|
11
|
+
Abhishek Kumar Jaiswal
|
|
12
|
+
Adam Johnson
|
|
13
|
+
Adam McKerlie
|
|
14
|
+
Agustin Perez Paladini
|
|
15
|
+
Ahmet Emre Aladağ
|
|
16
|
+
Aiden Lu
|
|
17
|
+
Aldiantoro Nugroho
|
|
18
|
+
Alexander Gaevsky
|
|
19
|
+
Alfredo Altamirano
|
|
20
|
+
Andrean Franc
|
|
21
|
+
Andrei Satsevich
|
|
22
|
+
Andrew Chen Wang
|
|
23
|
+
Andrey Akolpakov
|
|
24
|
+
Andrey Balandin
|
|
25
|
+
Andy Matthews
|
|
26
|
+
Ani Vera
|
|
27
|
+
Anna Sirota
|
|
28
|
+
Anton Goncharov
|
|
29
|
+
Antonin Delpeuch
|
|
30
|
+
Aron Griffis
|
|
31
|
+
Bas ten Berge
|
|
32
|
+
Basil Shubin
|
|
33
|
+
Ben Timby
|
|
34
|
+
Benjamin Howes
|
|
35
|
+
Benjamin Jorand
|
|
36
|
+
Bhavani Ravi
|
|
37
|
+
Biel Massot
|
|
38
|
+
Björn Andersson
|
|
39
|
+
Bojan Mihelac
|
|
40
|
+
Brandon Kong
|
|
41
|
+
Bruno Alla
|
|
42
|
+
Chris Beaven
|
|
43
|
+
Chris Davis
|
|
44
|
+
Christian Carter
|
|
45
|
+
Christopher Grebs
|
|
46
|
+
Dan LaManna
|
|
47
|
+
Dani Hodovic
|
|
48
|
+
Daniel Eriksson
|
|
49
|
+
Daniel Widerin
|
|
50
|
+
David Ascher
|
|
51
|
+
David Cain
|
|
52
|
+
David D. Lowe
|
|
53
|
+
David Evans
|
|
54
|
+
David Friedman
|
|
55
|
+
David Hummel
|
|
56
|
+
Dimitris Tsimpitas
|
|
57
|
+
Dmytro Litvinov
|
|
58
|
+
Egor Poderyagin
|
|
59
|
+
Eran Rundstein
|
|
60
|
+
Eric Amador
|
|
61
|
+
Eric Delord
|
|
62
|
+
Fabio Caritas Barrionuevo da Luz
|
|
63
|
+
Facundo Gaich
|
|
64
|
+
Felipe Faria
|
|
65
|
+
Filip Dobrovolný
|
|
66
|
+
Francis Brito
|
|
67
|
+
Frantisek Malina
|
|
68
|
+
Fred Palmer
|
|
69
|
+
Fábio Santos
|
|
70
|
+
George Whewell
|
|
71
|
+
Griffith Rees
|
|
72
|
+
Guignard Javier
|
|
73
|
+
Guilhem Saurel
|
|
74
|
+
Guillaume Schurck
|
|
75
|
+
Guillaume Vincent
|
|
76
|
+
Guoyu Hao
|
|
77
|
+
Haesung Park
|
|
78
|
+
Hatem Nassrat
|
|
79
|
+
Hyunwoo Shim
|
|
80
|
+
Ian R-P
|
|
81
|
+
Ignacio Ocampo
|
|
82
|
+
Illia Volochii
|
|
83
|
+
J. Erm
|
|
84
|
+
J. Fernando Sánchez
|
|
85
|
+
Jack Shedd
|
|
86
|
+
Jakob Gerhard Martinussen
|
|
87
|
+
James Rivett-Carnac
|
|
88
|
+
James Thompson
|
|
89
|
+
Jannis Leidel
|
|
90
|
+
Jannis Vajen
|
|
91
|
+
Jason Wallace
|
|
92
|
+
Jeff Bowen
|
|
93
|
+
Jeff Triplett
|
|
94
|
+
Jeremy Satterfield
|
|
95
|
+
Jerome Leclanche
|
|
96
|
+
Jesse Gerard Brands
|
|
97
|
+
Jihoon Park
|
|
98
|
+
Jiyoon Ha
|
|
99
|
+
Joe Vanderstelt
|
|
100
|
+
Joel Fernandes
|
|
101
|
+
John Bazik
|
|
102
|
+
John Whitlock
|
|
103
|
+
Jonas Aule
|
|
104
|
+
JoonHwan Kim
|
|
105
|
+
Josh Owen
|
|
106
|
+
Josh Wright
|
|
107
|
+
Joshua Butler
|
|
108
|
+
Joshua Sorenson
|
|
109
|
+
Julen Ruiz Aizpuru
|
|
110
|
+
Justin Michalicek
|
|
111
|
+
Justin Pogrob
|
|
112
|
+
Karthikeyan Singaravelan
|
|
113
|
+
Karun Shrestha
|
|
114
|
+
Kevin Dice
|
|
115
|
+
Kimsia Sim
|
|
116
|
+
Koichi Harakawa
|
|
117
|
+
Kun Liu
|
|
118
|
+
Kyle Harrison
|
|
119
|
+
Lee Semel
|
|
120
|
+
Lev Predan Kowarski
|
|
121
|
+
Luis Diego García
|
|
122
|
+
Luiz Guilherme Pais dos Santos
|
|
123
|
+
Luke Burden
|
|
124
|
+
Luke Crouch
|
|
125
|
+
Maksim Rukomoynikov
|
|
126
|
+
Marcin Skarbek
|
|
127
|
+
Marcin Spoczynski
|
|
128
|
+
Marco Fucci
|
|
129
|
+
Marjori Pomarole
|
|
130
|
+
Markus Kaiserswerth
|
|
131
|
+
Markus Thielen
|
|
132
|
+
Martin Bächtold
|
|
133
|
+
Matt Nishi-Broach
|
|
134
|
+
Mauro Stettler
|
|
135
|
+
Mikhail Mitiaev
|
|
136
|
+
Morgante Pell
|
|
137
|
+
Nariman Gharib
|
|
138
|
+
Nathan Strobbe
|
|
139
|
+
Nicolas Acosta
|
|
140
|
+
Niklas A Emanuelsson
|
|
141
|
+
Oleg Sergeev
|
|
142
|
+
Patrick Paul
|
|
143
|
+
Paul Juergen Fischer
|
|
144
|
+
Paulo Eduardo Neves
|
|
145
|
+
Pavel Oborin
|
|
146
|
+
Pavel Savchenko
|
|
147
|
+
Peter Bittner
|
|
148
|
+
Peter Rowlands
|
|
149
|
+
Peter Stein
|
|
150
|
+
Philip John James
|
|
151
|
+
Rabi Alam
|
|
152
|
+
Radek Czajka
|
|
153
|
+
Rense VanderHoek
|
|
154
|
+
Rick Westera
|
|
155
|
+
Robert Balfre
|
|
156
|
+
Roberto Novaes
|
|
157
|
+
Rod Xavier Bondoc
|
|
158
|
+
Roman Tomjak
|
|
159
|
+
Roumen Antonov
|
|
160
|
+
Ryan Jarvis
|
|
161
|
+
Ryan Verner
|
|
162
|
+
Safwan Rahman
|
|
163
|
+
Sam Solomon
|
|
164
|
+
Sanghyeok Lee
|
|
165
|
+
Seizan Shimazaki
|
|
166
|
+
Serafeim Papastefanos
|
|
167
|
+
Sergey Silaev
|
|
168
|
+
Shane Rice
|
|
169
|
+
Stephen Kent
|
|
170
|
+
Stuart Ross
|
|
171
|
+
Terry Jones
|
|
172
|
+
Tiago Loureiro
|
|
173
|
+
Tim Gates
|
|
174
|
+
Tom Hacohen
|
|
175
|
+
Tomas Babej
|
|
176
|
+
Tomas Marcik
|
|
177
|
+
Trey Corple
|
|
178
|
+
Tuk Bredsdorff
|
|
179
|
+
Udi Oron
|
|
180
|
+
Vadim Meshcheryakov
|
|
181
|
+
Veljko Jovanovic
|
|
182
|
+
Victor Semionov
|
|
183
|
+
Vlad Dmitrievich
|
|
184
|
+
Volodymyr Yatsyk
|
|
185
|
+
Vuong Nguyen
|
|
186
|
+
Wendy Edwards
|
|
187
|
+
Will Gordon
|
|
188
|
+
Will Ross
|
|
189
|
+
William Li
|
|
190
|
+
Yaroslav Muravsky
|
|
191
|
+
Youcef Mammar
|
|
192
|
+
Yuri Kriachko
|
|
193
|
+
Mohamed BEN MAKHLOUF
|