Thanks. Our suite team will check this.
ok, that will be best.
hi
Could you share a project that reproduces the UI problem?
Your problem is about UI. Use the code to change it is the wrong way.
Thanks.
hi
Is the build error caused by the Suite?
Thanks.
hi
The base class will call the GetRedirectUrlAsync
.
Can you debug to check if your returnUrl
is set correctly?
Thanks.
[HttpGet]
public virtual async Task<ActionResult> LogoutAsync(string returnUrl = "", string returnUrlHash = "")
{
await HttpContext.SignOutAsync();
if (HttpContext.User.Identity?.AuthenticationType == AuthenticationType)
{
return await RedirectSafelyAsync(returnUrl, returnUrlHash);
}
return SignOut(new AuthenticationProperties { RedirectUri = await GetRedirectUrlAsync(returnUrl, returnUrlHash) }, ChallengeAuthenticationSchemas);
}
hi
I have tried specifying the return url in the logoutasync method within the account controller but that is ignored.
Can you share your logout method code?
Thanks.
hi
We will release it asap.
Thanks.
hi
The Override host client information
feature was introduced >= 9.2.0
Can you update the packages first?
You will then see these options on the Settings page.
Remember to remove all settings of Abp.Account.ExternalProviders, Set it after upgrading to the new version.
Thanks.
hi
Your host api
depends on the Identity module.
They should use the Identity
database.
{
"ConnectionStrings": {
"Default": "Server=localhost;",
"AbpIdentity": "Server=localhost;"
}
}
You can also remove the Identity module from your host api
Thanks.