fix pyproject: +requests

This commit is contained in:
Helmut Merz 2025-04-15 18:33:37 +02:00
parent 4b791cf83b
commit cae934c2d7
2 changed files with 2 additions and 1 deletions

View file

@ -29,7 +29,7 @@ app = [
"zope.publisher", "zope.publisher",
"zope.traversing", "zope.traversing",
] ]
auth = ["pyjwt[crypto]", "cryptography"] auth = ["pyjwt[crypto]", "cryptography", "requests"]
test = ["zope.testrunner"] test = ["zope.testrunner"]
#test = ["pytest"] #test = ["pytest"]

View file

@ -46,6 +46,7 @@ class OidcAuthentication:
def logout(self, request): def logout(self, request):
print('*** OidcAuthentication: logout') print('*** OidcAuthentication: logout')
Authenticator(request).logout()
JwtAuthentication = OidcAuthentication # old name - still used? JwtAuthentication = OidcAuthentication # old name - still used?