diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c7e3920..bddc5703 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - `admin_email` help text in `copier.yml` updated to be more clear that it's the destination for emails sent to Admins. This is primarily only used in the `templates/.well-known/security.txt` file at the moment. - All HTML templates in `src/django_twc_project/templates` have been formatted using djLint. - Add missing `django-tailwind-cli` build command in CI/CD test job. +- Redirect after login to "index" view instead of non-existent "dashboard" view. ### Removed diff --git a/src/django_twc_project/{{ module_name }}/settings.py.jinja b/src/django_twc_project/{{ module_name }}/settings.py.jinja index 37f5aadc..f7a9bc95 100644 --- a/src/django_twc_project/{{ module_name }}/settings.py.jinja +++ b/src/django_twc_project/{{ module_name }}/settings.py.jinja @@ -337,7 +337,7 @@ ACCOUNT_UNIQUE_EMAIL = True ACCOUNT_USERNAME_REQUIRED = False -LOGIN_REDIRECT_URL = "dashboard" +LOGIN_REDIRECT_URL = "index" SOCIALACCOUNT_PROVIDERS = { "okta": {