Add Ability to Customize redirect parameter names #1617
justwiebe
started this conversation in
Ideas & Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem? Please describe.
I am using Azure authentication which works great but needs a decent amount of customization. One of these is the
redirect.logout
parameter name. When I setredirect.logout
and log out, the query parameter is "logout_uri=<redirect.logout>" but Azure is expecting "post_logout_redirect_uri=<redirect.logout>".Describe the solution you'd like to see
It would be nice if the redirect options accepted an object as their value for additional customization. something like:
And the logout URL would now contain
&${redirect.logout.param}=${redirect.logout.uri}
Describe alternatives you've considered
As a workaround I'm extending the Scheme and overriding the
logout
method, but this means that if that method changes I'll have to update it in my code as well because there's no way to simply override the parameter name and callsuper
.Beta Was this translation helpful? Give feedback.
All reactions