hi
What is your ABP version?
Can you share the logs.txt
file?
Can you share some screenshots?
Thanks.
hi
Can you try setting IsJobExecutionEnabled
to true
in one app and disabling it in other apps?
Thanks.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BackgroundJobs.Abstractions/Volo/Abp/BackgroundJobs/AbpBackgroundJobOptions.cs#L15
Please share the logs from the API website.
You can consider sharing a project to reproduce the issue. It could be related to the access token.
hi
I will share the Layout source with you.
hi
Can you try to use [Dependency(ReplaceServices = true)]
?
Please set a breakpoint to see if the Calculate
method has been called.
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IAzureBlobNameCalculator), typeof(DefaultAzureBlobNameCalculator))]
public class MyAzureBlobNameCalculator : DefaultAzureBlobNameCalculator
{
public MyAzureBlobNameCalculator(ICurrentTenant currentTenant)
: base(currentTenant)
{
}
public override string Calculate(BlobProviderArgs args)
{
return CurrentTenant.Id == null
? $"{args.BlobName}"
: $"tenants/{CurrentTenant.Id.Value:D}/{args.BlobName}";
}
}
Thanks.
hi
I need source code of lepton in account flow for version 4.2 and 8.2 differently I have also mailed that but didn't received source code yet attaching screenshot.
Do you only need the Account Layout
of the Lepton theme?
Thanks.
hi
Please output the values of Auth
and CurrentUser
. They are used for Permission
check.
ok, Thanks.
I have removed the picture.
hi
The Cdi.Grc.Feed
NuGet source requires an account. I can't restore packages.
Can you test your case in a new Blazor WASM project and share it?
Thanks.