Activities of "maliming"

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.

hi

I checked your source code. It seems no problem.

I think this is an environmental problem. Can you try to publish it on the local IIS server?

Showing 5991 to 6000 of 11531 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
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.