Activities of "maliming"

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

hi

I will check again.

hi @yekalkan

Do you have any advice ?

Showing 7661 to 7670 of 8452 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11