Activities of "maliming"

we have shared the bare minimal project without depedencies for you to reproduce the issue locally.

I can't use the project you shared before, as I said in the meeting, you should provide a project and steps that only depend on the local PostgreSQL database.

I remember another friend had agreed to do this in the meeting,

hi

You need install the Microsoft.AspNetCore.SignalR.StackExchangeRedis package. https://www.nuget.org/packages/Microsoft.AspNetCore.SignalR.StackExchangeRedis/

Then

public override void PreConfigureServices(ServiceConfigurationContext context)
{
	context.Services.PreConfigure<ISignalRServerBuilder>(builder =>
	{
		builder.AddStackExchangeRedis("connectionString", options =>
		{
			options.Configuration.ChannelPrefix = "MyApp";
		});
	});
}

hi

There is no build-in feature.

You can use the usermanager, rolemanager and related repositories in Identity to implement your needs.

hi

The remote check may be affected by the network speed, we can give it a try.

Please send me an email when you're online. liming.ma@volosoft.com

we need to add services.AddSignalR().AddStackExchangeRedis("<your_Redis_connection_string>");

Yes, but you need to configure the ISignalRServerBuilder.

public override void PreConfigureServices(ServiceConfigurationContext context)
{
	context.Services.PreConfigure<ISignalRServerBuilder>(builder =>
	{
		builder.AddStackExchangeRedis("connectionString", options =>
		{
			options.Configuration.ChannelPrefix = "MyApp";
		});
	});
}

The issue with that is that the GenerateEmailConfirmationTokenAsync is being called on the api while ConfirmEmailAsync is on the idenentity server so having the same UserManager is not possible accross both.

I'm curious how this happened.

hi ruben.vazquez-chapa

I checked. The identity server sends and check the token by default.

abp new qa -t app -u angular --separate-identity-server

hi

The abp framework allows you to manage users, roles, and their permissions. You have to create roles manually or through code, and assign permissions.

hi

You should follow the steps and code in the document to try. If it doesn't work, please check the logs to know what's wrong.

hi Dicky.tech

Currently you can only customize it, of course we will continue to enhance lepton

Showing 10771 to 10780 of 11568 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 25, 2025, 06:16
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.