Skip to content

Commit

Permalink
Add extra params to endsession request
Browse files Browse the repository at this point in the history
  • Loading branch information
coberlin committed Nov 1, 2024
1 parent 389869b commit 26bd1d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/omniauth/strategies/openid_connect.rb
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,9 @@ def encoded_post_logout_redirect_uri
return unless options.post_logout_redirect_uri

URI.encode_www_form(
post_logout_redirect_uri: options.post_logout_redirect_uri
post_logout_redirect_uri: options.post_logout_redirect_uri,
id_token_hint: params['id_token_hint'],
state: params['state']
)
end

Expand Down

0 comments on commit 26bd1d7

Please sign in to comment.