Activities of "maliming"

hi

We will fix this issue.

hi

You can use @attribute [Authorize(AbpSolution1Permissions.Books.Default)] in your component.

eg https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor#L2

hi

Link user feature : https://abp.io/docs/latest/modules/account/linkedaccounts

I think it comes from the Nuget package. You can ignore it.

Thanks. I will check your other ticket. The current ticket has been refunded.

Answer

anyway the problem is solved

Great!

hi

Your project only has the AddJwtBearer

Please refer the code from https://abp.io/support/questions/5167/Hangfire-Authorization-Problem#answer-3a0b888e-b47a-d13d-c030-80ce3f046997

private void ConfigureAuthentication(ServiceConfigurationContext context, IConfiguration configuration)
{
    context.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
        .AddJwtBearer(options =>
        {
            options.Authority = configuration["AuthServer:Authority"];
            options.RequireHttpsMetadata = configuration.GetValue("AuthServer:RequireHttpsMetadata");
            options.Audience = "HangfireAuthTest";
        });

    context.Services.Configure(options =>
    {
        options.IsDynamicClaimsEnabled = true;
    });
}

hi

Please share full code of your module.

Thanks

hi

What are code about AddAuthencation?

hi

But what about the Dashboard Authorization?

Please share your module code that contains the UseAbpHangfireDashboard

Showing 461 to 470 of 7736 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 23, 2024, 13:33