File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
56
56
57
57
### Fixed
58
58
59
+ - Use oidc login Keystone provider for automatically forwarded SSO in oidc return
59
60
- (GH #851 ) Kill upload sessions upon finishing uploads to allow reuploading same files in all cases
60
61
- (GH #884 ) Fixed multiple bugs
61
62
- Redirected to AllFolders view whenever the selected project changes
Original file line number Diff line number Diff line change @@ -98,8 +98,9 @@ async def oidc_end(request: aiohttp.web.Request) -> aiohttp.web.Response:
98
98
)
99
99
100
100
if session ["oidc" ]["userinfo" ].get ("homeFederation" , "" ) == "Haka" :
101
- response .headers ["Location" ] = HAKA_ENDPOINT (
101
+ response .headers ["Location" ] = HAKA_OIDC_ENDPOINT (
102
102
endpoint = str (setd ["auth_endpoint_url" ]),
103
+ oidc = str (setd ["keystone_oidc_provider" ]),
103
104
origin = str (setd ["set_origin_address" ]),
104
105
)
105
106
You can’t perform that action at this time.
0 commit comments