hi
The app.UseRouting(); should be at the top.
app.UseRouting();
app.Use(async (context, next) =>
{
if (context.Request.Path.Value != null &&
context.Request.Path.Value.StartsWith("/appsettings", StringComparison.OrdinalIgnoreCase) &&
context.Request.Path.Value.EndsWith(".json", StringComparison.OrdinalIgnoreCase))
{
// Set endpoint to null so the static files middleware will handle the request.
context.SetEndpoint(null);
}
await next(context);
});
app.UseStaticFilesForPatterns("appsettings*.json");
app.MapAbpStaticAssets();
....but the font icons still do not show.
What are the steps to reproduce the font icon problem with ABP_Issue?
Thanks.
hi
Please send a mail to liming.ma@volosoft.com
I will share the latest source code of ExternalProviderSettingsHelper.
Thanks.
hi
However, we are experiencing issues when trying to download these files from abp file management module.
What is the problem? Can you share the exception logs?
You can inject the FileManager to create new files.
Thanks.
hi
I will ask our Angular team about How to enable Idle feature in Angular app.
Thanks.
hi
Abp will create a new user with LDAP external user info.
hi
I will update the translations.
You can update it in the language text page or override it in your app.
https://abp.io/docs/latest/modules/language-management#language-texts
https://abp.io/community/articles/how-to-override-localization-strings-of-depending-modules-ba1oy03l
Thanks.
I’m not sure about the specific way you’re using the container. It would be best if you could share a template project and the steps. Once I can reproduce the problem, I’ll be able to identify the cause right away.
Thanks.
hi
I don't know about your LDAP server, you can try to replace several filter strings
var filter = $"(&(objectClass=user)(sAMAccountName={testUserName}))";
Thanks.
hi
9.2.4
Your ticket has been refunded.
Thanks.
This is related to our DLL encryption. We will remove the encryption from the entity, which will solve the problem.