Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
USE_TZ = True
# https://docs.djangoproject.com/en/dev/ref/settings/#locale-paths
LOCALE_PATHS = [str(ROOT_DIR / "locale")]
# https://docs.djangoproject.com/en/5.0/ref/settings/#std-setting-SILENCED_SYSTEM_CHECKS
SILENCED_SYSTEM_CHECKS = ["slippers.E001"]

# DATABASES
# ------------------------------------------------------------------------------
Expand Down Expand Up @@ -442,6 +444,9 @@
ACCOUNT_ADAPTER = "django_wtf.users.adapters.AccountAdapter"
# https://django-allauth.readthedocs.io/en/latest/configuration.html
SOCIALACCOUNT_ADAPTER = "django_wtf.users.adapters.SocialAccountAdapter"
# https://github.com/danihodovic/django-allauth-ui?tab=readme-ov-file#configuration
ALLAUTH_UI_THEME = "business"

ACCOUNT_EMAIL_CONFIRMATION_AUTHENTICATED_REDIRECT_URL = reverse_lazy(
"core:subscriber-landing"
)
Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ django-debug-toolbar = "^3.2.4"
celery = "^5.2.3"
Django = "^5.0.6"
django-celery-beat = "^2.4.0"
django-allauth-ui = "^1.0.0"
django-allauth-ui = "^1.2.0"
django-widget-tweaks = "^1.4.12"
redis = "^4.1.3"
requests = "^2.27.1"
Expand Down