Activities of "maliming"

hi

This is related to: https://github.com/abpframework/abp/issues/2643#issuecomment-574940166

You can consider add [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)] on your controller or method.

hi

I got your mail I will check it asap. : )

HI

I checked the inbox,trash,spam did not receive any mail,

liming.ma@volosoft.com

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

Showing 6961 to 6970 of 7761 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 25, 2024, 05:13