From 35cf8884bf7ef7d8ea3335faf83753c933647211 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Sat, 5 Apr 2025 17:33:36 +0200 Subject: [PATCH] auth: unauthorized: call login() --- scopes/server/auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scopes/server/auth.py b/scopes/server/auth.py index c00d10c..6c58d1a 100644 --- a/scopes/server/auth.py +++ b/scopes/server/auth.py @@ -41,6 +41,7 @@ class OidcAuthentication: def unauthorized(self, id, request): if self.baseAuth is not None: return self.baseAuth.unauthorized(id, request) + Authenticator(request).login() def logout(self, request): print('*** OidcAuthentication: logout')