Skip to content
This repository was archived by the owner on Jun 12, 2021. It is now read-only.

Commit 460b144

Browse files
committed
Added missing possible endpoint.
1 parent 1581130 commit 460b144

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/oidcendpoint/oidc/provider_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ def __init__(self, endpoint_context, **kwargs):
2222
def add_endpoints(self, request, client_id, endpoint_context, **kwargs):
2323
for endpoint, endp_instance in self.endpoint_context.endpoint.items():
2424
if endpoint in ['authorization_endpoint', 'registration_endpoint',
25-
'token_endpoint', 'userinfo_endpoint']:
25+
'token_endpoint', 'userinfo_endpoint',
26+
'end_session_endpoint']:
2627
request[endpoint] = endp_instance.endpoint_path
2728

2829
return request

0 commit comments

Comments
 (0)