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

Commit 02c0cec

Browse files
authored
Merge pull request #40 from IdentityPython/end_session_as_default
Added end_session as a default service.
2 parents 9fbef23 + e34135d commit 02c0cec

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/oidcrp/oidc/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121

2222
DEFAULT_SERVICES = {
2323
"discovery": {
24-
'class': 'oidcrp.oidc.provider_info_discovery'
25-
'.ProviderInfoDiscovery'
24+
'class': 'oidcrp.oidc.provider_info_discovery.ProviderInfoDiscovery'
2625
},
2726
'registration': {
2827
'class': 'oidcrp.oidc.registration.Registration'
@@ -38,6 +37,9 @@
3837
},
3938
'userinfo': {
4039
'class': 'oidcrp.oidc.userinfo.UserInfo'
40+
},
41+
'end_session': {
42+
'class': 'oidcrp.oidc.end_session.EndSession'
4143
}
4244
}
4345

0 commit comments

Comments
 (0)