You're welcome.
hi
Did you run the abp login to log in to your account?
Thanks.
hi
Try to begin a new uow.
using (var uow = _unitOfWorkManager.Begin(requiresNew: true))
{
using (var auditingScope = auditingManager.BeginScope())
////
await uow.CompleteAsync();
}
https://abp.io/docs/latest/framework/architecture/domain-driven-design/unit-of-work#begin-a-new-unit-of-work
Thanks.
Great 👍
hi
You can create an audit log scope in your job.
Please note that it does not support remote services and can only work within a single application.
https://abp.io/docs/latest/framework/infrastructure/audit-logging#manually-create-an-audit-log-scope
Thanks
hi
You can set the job name after 9.3.0
https://github.com/abpframework/abp/issues/22700 https://github.com/abpframework/abp/pull/22714
Thanks.
hi
The HomeComponent will also use code to get an access token. We will enhance it in the next version. Please follow https://github.com/abpframework/abp/issues/23286
this.authService.navigateToLogin();
You can pass the __tenant to the query string when doing the code flow.
I will ask Angular how to do this.
Thanks.
hi
Invalid credentials.
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
Thanks.