mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-20 13:36:45 +01:00
Fix: add account_inactive template / url (#9322)
This commit is contained in:
parent
f2667f5afa
commit
cf48f47a8c
3 changed files with 42 additions and 3 deletions
|
|
@ -278,10 +278,15 @@ urlpatterns = [
|
|||
include(
|
||||
[
|
||||
# see allauth/account/urls.py
|
||||
# login, logout, signup
|
||||
# login, logout, signup, account_inactive
|
||||
path("login/", allauth_account_views.login, name="account_login"),
|
||||
path("logout/", allauth_account_views.logout, name="account_logout"),
|
||||
path("signup/", allauth_account_views.signup, name="account_signup"),
|
||||
path(
|
||||
"account_inactive/",
|
||||
allauth_account_views.account_inactive,
|
||||
name="account_inactive",
|
||||
),
|
||||
# password reset
|
||||
path(
|
||||
"password/",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue