From 0ad2b05455daa565825b01af361c841b8657e3ce Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Sun, 14 Mar 2021 14:17:21 +0100 Subject: [PATCH] fixes #745 --- src/paperless/auth.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/paperless/auth.py b/src/paperless/auth.py index 3bc6344cd..79deb5c37 100644 --- a/src/paperless/auth.py +++ b/src/paperless/auth.py @@ -1,4 +1,5 @@ from django.conf import settings +from django.contrib import auth from django.contrib.auth.models import User from django.utils.deprecation import MiddlewareMixin from rest_framework import authentication @@ -11,6 +12,7 @@ class AutoLoginMiddleware(MiddlewareMixin): try: request.user = User.objects.get( username=settings.AUTO_LOGIN_USERNAME) + auth.login(request, request.user) except User.DoesNotExist: pass