hi
You can clear the TenantResolvers of AbpTenantResolveOptions and only keep the DomainTenantResolveContributor and CurrentUserTenantResolveContributor
No need to change the account login page.
Thanks.
hi
Team: Your solution uses the modules and themes as NuGet and NPM packages. It doesn't include their source code. This way, you can easily upgrade these modules and themes whenever a new version is available. However, you can not get the source code of these modules and themes.
https://abp.io/faq#is-source-code-included
hi devpomi
What is your license type?
Team or Business?
Thanks.
ok, I will check it.
Thanks.
hi
Can you try to use PreConfigure?
PreConfigure<HttpConnectionDispatcherOptions>(x =>
{
x.CloseOnAuthenticationExpiration = true;
});
You can also output the AuthenticateResult?.Properties?.ExpiresUtc to logs by adding a custom middleware after UseAuthentication
app.UseAuthentication();
app.Use(async (httpContext, next) =>
{
var logger = httpContext.RequestServices.GetRequiredService<ILogger<YourModule>>();
var authenticateResultFeature = context.Features.Get<IAuthenticateResultFeature>();
if (authenticateResultFeature is not null)
{
logger.LogError("ExpiresUtc: " + authenticateResultFeature.AuthenticateResult?.Properties?.ExpiresUtc);
}
else
{
logger.LogError("authenticateResultFeature is null");
}
await next(httpContext);
});
Thanks.
hi
I have already checked the appsettings.secrets.json file, and the AbpLicenseCode key is present with the correct value.
Does the appsettings.secrets.json file exist in the Container?
Can you try to move the AbpLicenseCode from appsettings.secrets.json to appsettings.json?
Thanks.
hi
Can you share a minimal project that reproduces the error?
I will download and check your code.
liming.ma@volosoft.com
Thanks.
hi
For your requirements, I suggest downloading the File Management Module source code and modifying it.
Adding new Entity and properties.
Thanks.