File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
test/lib/omniauth/strategies Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -423,8 +423,10 @@ def redirect_uri
423423 def encoded_post_logout_redirect_uri
424424 return unless options . post_logout_redirect_uri
425425
426+ id_token_hint = @access_token . id_token if @acess_token
426427 URI . encode_www_form (
427- post_logout_redirect_uri : options . post_logout_redirect_uri
428+ post_logout_redirect_uri : options . post_logout_redirect_uri ,
429+ id_token_hint : id_token_hint
428430 )
429431 end
430432
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def test_logout_phase_with_discovery
4545 end
4646
4747 def test_logout_phase_with_discovery_and_post_logout_redirect_uri
48- expected_redirect = 'https://example.com/logout?post_logout_redirect_uri=https%3A%2F%2Fmysite.com'
48+ expected_redirect = 'https://example.com/logout?post_logout_redirect_uri=https%3A%2F%2Fmysite.com&id_token_hint '
4949 strategy . options . client_options . host = 'example.com'
5050 strategy . options . discovery = true
5151 strategy . options . post_logout_redirect_uri = 'https://mysite.com'
You can’t perform that action at this time.
0 commit comments