Activities of "maliming"

hi

The license error has been fixed. We released rc1 commercial again You need to clean your nuget cache. dotnet nuget locals all --clear Also ABP templates folder C:\Users\xxxx\.abp\templates Then try again

hi

You can add a new Identity Resouce named institution_id.

Add the institution_id to the request's scopes. options.Scope.Add("institution_id");

[UnitOfWork]
public virtual async Task SeedAsync(DataSeedContext context)
{
    using (_currentTenant.Change(context?.TenantId))
    {
        await _identityResourceDataSeeder.CreateStandardResourcesAsync();

        if (!await _identityResourceRepository.CheckNameExistAsync(SHDPClaimTypes.InstitutionId))
        {
            var institutionIdIdentityResource = new IdentityResource(_guidGenerator.Create(), SHDPClaimTypes.InstitutionId);
            institutionIdIdentityResource.AddUserClaim(SHDPClaimTypes.InstitutionId);
            await _identityResourceRepository.InsertAsync(institutionIdIdentityResource);
            if (await _claimTypeRepository.AnyAsync(SHDPClaimTypes.InstitutionId))
            {
                await _claimTypeRepository.InsertAsync(
                    new IdentityClaimType(
                        _guidGenerator.Create(),
                        SHDPClaimTypes.InstitutionId,
                        isStatic: true
                    )
                );
            }
        }

        await CreateClaimTypesAsync();
        await CreateApiResourcesAsync();
        await CreateClientsAsync();
    }
}
var commonScopes = new[]
{
    "email",
    "openid",
    "profile",
    "role",
    "phone",
    "address",
    "DigitalPlatform",
    "institution_id"
};

hi

You can add a new method to app service to get all items.

Or set the MaxResultCount of GetProvidersInput to int.MaxValue.

so add a new method will be better.

hi

Please share the code of seeding the identity server's configuration.

hi

Please share your identity server config. eg Client, API Scope ,Identity Resource

Thanks.

Thanks NeilLloyd

hi

This feature doesn't support paging now.

https://github.com/abpframework/abp/pull/18226

hi

Try to add <UiPageProgress /> to Pages/PageProgress.razor

hi

The team will check this in 2 hours, Thanks.

Showing 6011 to 6020 of 11556 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.