Nerzal/gocloak

adding an option to add logout redirect URLs

justmike1 opened this issue · 2 comments

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

I want to add to my client a logout redirect URL, like I do with

		clientClient := gocloak.Client{
			PublicClient:              gocloak.BoolP(true),
			RootURL:                   gocloak.StringP(clientServerURL),
			AdminURL:                  gocloak.StringP(clientServerURL),
			RedirectURIs:              &[]string{clientServerURL + "/*"},
			WebOrigins:                &[]string{clientServerURL},
			ClientID:                  gocloak.StringP(clientClientName),
			ImplicitFlowEnabled:       gocloak.BoolP(true),
			DirectAccessGrantsEnabled: gocloak.BoolP(true),
		}

Describe the solution you'd like
A clear and concise description of what you want to happen.

something like:

		clientClient := gocloak.Client{
		        ....
			RedirectURIs:              &[]string{clientServerURL + "/*"},
			LogoutRedirectURIs:  &[]string{clientServerURL + "/*"},
			....
		}

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

None.

Additional context
Add any other context or screenshots about the feature request here.

this box in client section:
image