HI,
Are you using distributed cache? like Redis. If so, you also need to clear the Redis cache.
Hi,
What is the result when you run npm list yarn -g command.
Hi,
You can try this:
update AbpSettings set Value = 'False' where Name = 'Abp.Account.Captcha.UseCaptchaOnLogin' and ProviderName = 'G'
PS: You may need to restart the application
Hi,
Authenticate with a Local Account is necessary to use the identity server to log in.
Local Account means your application users.
If you turn off the Authenticate with a Local Account , you have to configure an external login, eg. Microsft, Goggle or twitter.
what's the issue with Angular UI?
https://github.com/volosoft/volo/issues/10296
Hi,
It's a bug: https://github.com/abpframework/abp/issues/12665
We will fix it, your ticket will be refunded. for now, you can try this:
public class MyRoleUpdateEventHandler :
IDistributedEventHandler<IdentityRoleNameChangedEto>,
ITransientDependency
{
protected IPermissionManager PermissionManager { get; }
protected IPermissionGrantRepository PermissionGrantRepository { get; }
protected ICurrentTenant CurrentTenant { get; }
public MyRoleUpdateEventHandler(
IPermissionManager permissionManager,
IPermissionGrantRepository permissionGrantRepository,
ICurrentTenant currentTenant)
{
PermissionManager = permissionManager;
PermissionGrantRepository = permissionGrantRepository;
CurrentTenant = currentTenant;
}
public async Task HandleEventAsync(IdentityRoleNameChangedEto eventData)
{
using (CurrentTenant.Change(eventData.TenantId))
{
var permissionGrantsInRole = await PermissionGrantRepository.GetListAsync(RolePermissionValueProvider.ProviderName, eventData.OldName);
foreach (var permissionGrant in permissionGrantsInRole)
{
await PermissionManager.UpdateProviderKeyAsync(permissionGrant, eventData.Name);
}
}
}
}
Hi,
Is your problem solved? I didn't receive your email.
If you needed, I can share the project via email with you. so you don't need to wait. shiwei.liang@volosoft.com
Also, we public EventHub project source code: https://github.com/abpframework/eventhub
Hi,
We have refactored the easy-crm project, but the download project is old version, we will update it.
I will get back to you later today
Hi,
We created an issue for this: https://github.com/abpframework/abp/issues/12618
You can try specifying the url parameter
eg : abp generate-proxy -t ng -m identity -u https://localhost:44305
BTW, your ticket refunded