Reputation: 517
When logging out from the application, IdentityServer's "You are now logged out of the application" view gets displayed. Is there a way to prevent this from happening?
TIA
Upvotes: 0
Views: 62
Reputation: 1319
You can set EnablePostSignOutAutoRedirect option to true in AuthenticationOptions (it's set to false by default). Then, the user would be redirected back to the post_logout_redirect_uri.
More details here: https://identityserver.github.io/Documentation/docsv2/configuration/authenticationOptions.html
Upvotes: 1