Activities of "aZee"

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 
            >());
    }
}
  • ABP Framework version: v8.2.3

Hello, can I replace IdentitySessionDynamicClaimsPrincipalContributor with my own implementation? If so, how can I do it?

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

LEPTON-X : Is it possible to have the toolbar at the top to obtain a layout similar to LEPTON?

Showing 1 to 4 of 4 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13