Activities of "maliming"

hi

I think you can only custom the CLI code and build a new CLI(named: myabp)

hi

You forgot the virtual.

 [UnitOfWork]
public virtual async Task HandleEventAsync(AccessRequestApprovedEto eventData)

hi

These settings are defined by the Identity module.

Why not just use it?

Good news.

You can add your CDN in the view and render it by the https://docs.abp.io/en/abp/latest/UI/AspNetCore/Layout-Hooks

hi

The CDN feature is not available on the bundling system now.

https://github.com/abpframework/abp/issues/294

In your component.

hi

Can you try to add ConfigureApplicationCookie below the AddJwtBearer?

 private void ConfigureAuthentication(IServiceCollection services, IConfiguration configuration)
{
    services.AddAuthentication()
        .AddJwtBearer(JwtBearerDefaults.AuthenticationScheme, options =>
        {
            options.Authority = configuration["AuthServer:Authority"];
            options.RequireHttpsMetadata = Convert.ToBoolean(configuration["AuthServer:RequireHttpsMetadata"]);
            options.Audience = "MyProjectName";
        });

    services.ConfigureApplicationCookie(options =>
    {
        // Forward any requests that start with /api to the JWT scheme.
        options.ForwardDefaultSelector = ctx =>
        {
            //You can also check request info or current identity(ctx.User.Identity.AuthenticationType)
            return ctx.Request.Path.StartsWithSegments("/api") ? JwtBearerDefaults.AuthenticationScheme : null;
        };
    });
}

You can call the application service in the Blazor Server.

https://docs.microsoft.com/en-us/aspnet/core/blazor/file-uploads?view=aspnetcore-6.0&pivots=server

You can only remove the modules that need to be disabled in the project.

Showing 8941 to 8950 of 11529 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.