fix pyproject: +requests
This commit is contained in:
parent
4b791cf83b
commit
cae934c2d7
2 changed files with 2 additions and 1 deletions
|
@ -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"]
|
||||||
|
|
||||||
|
|
|
@ -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?
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue