Starts in:
2 DAYS
15 HRS
3 MIN
7 SEC
Starts in:
2 D
15 H
3 M
7 S

Activities of "aZee"

Hello, I want to be able to customize the html code of the ConfirmationComponent, so this doesn't help.

Hello, thank you for your reply. However, I had to use the IServiceCollection.Replace method instead of Dependency attribute. Here's my working code : MyIdentitySessionDynamicClaimsPrincipalContributor.cs

public class MyIdentitySessionDynamicClaimsPrincipalContributor : IdentitySessionDynamicClaimsPrincipalContributor
{
    public override Task ContributeAsync(AbpClaimsPrincipalContributorContext context)
    {
        ...
    }
}

MyModule.cs

public class MyModule : AbpModule
{
    public override void ConfigureServices(ServiceConfigurationContext context)
    {
        ...
        context.Services.Replace(
            ServiceDescriptor.Transient<
            	IdentitySessionDynamicClaimsPrincipalContributor,
                MyIdentitySessionDynamicClaimsPrincipalContributor 
            >());
    }
}

This isn't exactly what we're looking for: we want to keep the side menu layout, but with the toolbar on top.

ABP Framework version: 8.2.3 UI Type: Angular

Showing 1 to 3 of 3 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06