Activities of "sukeshchand"

Hi,

Thanks for the replay,

Your replay is infomative,

The CustomEmailConfirmationTokenProvider can be added from the ConfigureServices.

public void ConfigureServices(IServiceCollection services)
{
    services.AddIdentity<ApplicationUser, IdentityRole>(options =>
    {
        options.Tokens.EmailConfirmationTokenProvider = "CustomEmailConfirmation";
    })
    .AddEntityFrameworkStores<AbpDbContext>()
    .AddDefaultTokenProviders()
    .AddTokenProvider
    <CustomEmailConfirmationTokenProvider<ApplicationUser>>("CustomEmailConfirmation");        
    }
}

But in the case of ABP.IO the IdentityServer and related properties are is configured in the Inherited ABP module

ProjectABPModule: AbpModule
{
public override void OnApplicationInitialization(ApplicationInitializationContext context)
    {
    **app.UseIdentityServer();**

My question is how do I change/configure CustomEmailConfirmationTokenProvider from this AbpModule?

Thanks for the help.

I found a way to do it. Override/Customize the SiginIn manager and implement the custom logic.

https://docs.abp.io/en/abp/2.9/How-To/Customize-SignIn-Manager

Showing 1 to 2 of 2 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.2.0-preview. Updated on January 09, 2026, 07:22
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.