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 ?
hi
The configuration of EF Core is fully applicable to abp.
https://docs.microsoft.com/en-us/ef/core/modeling/relationships?tabs=fluent-api,fluent-api-simple-key,simple-key#many-to-many https://www.learnentityframeworkcore.com/configuration/many-to-many-relationship-configuration https://www.entityframeworktutorial.net/efcore/configure-many-to-many-relationship-in-ef-core.aspx
wait for the good news.