Skip to content

Commit 2aaaf4c

Browse files
committed
fix: add logout callback function to openid connect frontend module
1 parent 1a9cf0d commit 2aaaf4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/satosa/frontends/openid_connect.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ class OpenIDConnectFrontend(FrontendModule):
3939
A OpenID Connect frontend module
4040
"""
4141

42-
def __init__(self, auth_req_callback_func, internal_attributes, conf, base_url, name):
42+
def __init__(self, auth_req_callback_func, logout_req_callback_func, internal_attributes, conf, base_url, name):
4343
self._validate_config(conf)
44-
super().__init__(auth_req_callback_func, internal_attributes, base_url, name)
44+
super().__init__(auth_req_callback_func, logout_req_callback_func, internal_attributes, base_url, name)
4545

4646
self.config = conf
4747
self.signing_key = RSAKey(key=rsa_load(conf["signing_key_path"]), use="sig", alg="RS256",

0 commit comments

Comments
 (0)