From 43ec154bc2f7bca35fb1910c2abd63e568c62c09 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 14 Mar 2024 08:34:23 -0700 Subject: [PATCH] Fix: allow setting allauth ACCOUNT_SESSION_REMEMBER (#6105) --- docs/configuration.md | 5 +++++ src/paperless/settings.py | 2 ++ 2 files changed, 7 insertions(+) diff --git a/docs/configuration.md b/docs/configuration.md index 5182d018b..981d27b27 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -589,6 +589,11 @@ system. See the corresponding Defaults to False +#### [`PAPERLESS_ACCOUNT_SESSION_REMEMBER=`](#PAPERLESS_ACCOUNT_SESSION_REMEMBER) {#PAPERLESS_ACCOUNT_SESSION_REMEMBER} + +: See the corresponding +[django-allauth documentation](https://docs.allauth.org/en/latest/account/configuration.html) + ## OCR settings {#ocr} Paperless uses [OCRmyPDF](https://ocrmypdf.readthedocs.io/en/latest/) diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 77adb6bbf..a583ef406 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -456,6 +456,8 @@ ACCOUNT_EMAIL_VERIFICATION = os.getenv( "optional", ) +ACCOUNT_SESSION_REMEMBER = __get_boolean("PAPERLESS_ACCOUNT_SESSION_REMEMBER") + if AUTO_LOGIN_USERNAME: _index = MIDDLEWARE.index("django.contrib.auth.middleware.AuthenticationMiddleware") # This overrides everything the auth middleware is doing but still allows