Activities of "liangshiwei"

HI,

you can disable local login

https://abp.io/docs/latest/modules/account-pro#local-login

If you use Social / External Logins, It is automatically called for authentication when logging in.

Just to make sure, the KeyPrefix can be anything,

yes.

However, I am still getting the exact same error:

i think this is a problem, is the problem can reproduce in local?

: )

you can get tenant entity here.

var tenant = await tenantRepository.FindAsync(eventData.Id);

Hi,

Basically you can ignore it, It is designed for audit purposes

I have tried to solve this and followed steps but web project is not starting

could you share the project with me? shiwei.liang@volosoft.com

HI,

you can try this

[Authorize]
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(ITenantAppService))]
public class MyTenantAppService : TenantAppService
{
    ....
    
    [AllowAnonymous]
    public override Task<SaasTenantDto> CreateAsync(SaasTenantCreateDto input)
    {
        //Manually check permissions here
        ...
    }
}

Hi,

All projects should use the same Redis config.(connection string, key prefix)

Configure<AbpDistributedCacheOptions>(options =>
{
    options.KeyPrefix = ...
});

Hi,

I think it's all. We have not changed Identity server in these versions.

you can give it a try, if there any problem you get, you can write it here

Hi,

you can try

public class CustomTenantDistributedHandler :
    IDistributedEventHandler<TenantCreatedEto>
{

    public async Task HandleEventAsync(TenantCreatedEto eventData)
    {
        ....
    }

}
Showing 51 to 60 of 5632 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13