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
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 ?