Skip to content

Commit 1a9cf0d

Browse files
committed
fix: add logout callback function to samlvirtualcofrontend class
1 parent 415b409 commit 1a9cf0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/satosa/frontends/saml2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -951,9 +951,9 @@ class SAMLVirtualCoFrontend(SAMLFrontend):
951951
KEY_ORGANIZATION = 'organization'
952952
KEY_ORGANIZATION_KEYS = ['display_name', 'name', 'url']
953953

954-
def __init__(self, auth_req_callback_func, internal_attributes, config, base_url, name):
954+
def __init__(self, auth_req_callback_func, logout_req_callback, internal_attributes, config, base_url, name):
955955
self.has_multiple_backends = False
956-
super().__init__(auth_req_callback_func, internal_attributes, config, base_url, name)
956+
super().__init__(auth_req_callback_func, logout_req_callback, internal_attributes, config, base_url, name)
957957

958958
def handle_authn_request(self, context, binding_in):
959959
"""

0 commit comments

Comments
 (0)