Browse Source
Merge pull request #15865 from abpframework/auto-merge/rel-7-1/1773
Merge branch dev with rel-7.1
pull/15875/head
maliming
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
3 deletions
-
modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/Controllers/LogoutController.cs
|
|
|
@ -20,8 +20,6 @@ public class LogoutController : AbpOpenIdDictControllerBase |
|
|
|
// Returning a SignOutResult will ask OpenIddict to redirect the user agent
|
|
|
|
// to the post_logout_redirect_uri specified by the client application or to
|
|
|
|
// the RedirectUri specified in the authentication properties if none was set.
|
|
|
|
return SignOut( |
|
|
|
authenticationSchemes: OpenIddictServerAspNetCoreDefaults.AuthenticationScheme, |
|
|
|
properties: new AuthenticationProperties {RedirectUri = "/"}); |
|
|
|
return SignOut(authenticationSchemes: OpenIddictServerAspNetCoreDefaults.AuthenticationScheme); |
|
|
|
} |
|
|
|
} |
|
|
|
|