hi I will report this feature request back to the team,
This doesn't seem to be code built into our module?
Can you share more information?
hi
You can see this: https://docs.abp.io/en/commercial/5.1/modules/account/ldap
Testing the LDAP configuration using your application might be complicated. Therefore you can use our test application. The following dotnet console app is for testing your LDAP configuration. Before using the configuration, test in this app and see if it works.
https://github.com/abpframework/abp-samples/tree/master/AbpLdapSample
hi
var healthChecksUiBuilder = services.AddHealthChecksUI(settings =>
{
settings.AddHealthCheckEndpoint("MyProjectName Health Status", "https://yourwebsite.com/health-status");
});
services.MapHealthChecksUiEndpoints(options =>
{
options.UIPath = "https://yourwebsite.com/health-ui";
options.ApiPath = "https://yourwebsite.com/health-api";
});
```
@sraptis has the commercial license.
hi
https://docs.abp.io/en/commercial/latest/abp-suite/generating-entities-from-an-existing-database-table
hi
You can create some settings for the Tenant side.
and https://docs.abp.io/en/abp/latest/Settings https://docs.abp.io/en/abp/latest/Modules/Setting-Management#setting-management-ui
hi
What's your ABP Framework version?
I checked.
This is already implemented.
If the project has localization files or web projects that contain js, css, or any embedded file resources such as any email templates, the virtual file system is used by default.
If these resource files you need to change frequently during development you can use ReplaceEmbeddedByPhysical
https://docs.abp.io/en/abp/latest/Virtual-File-System#dealing-with-embedded-files-during-development
Is it possible to limit the number of users logged in at the same time
You can check in the login endpoint.
Store login user info in Redis or database. Prohibit logins after reaching the limit, or limit previous logins. You can limit this by adding a special value to user claims.