Add DE finance rules and IIS path base

This commit is contained in:
2026-05-20 12:21:06 +02:00
parent 6246c886ca
commit 5e305ae396
6 changed files with 167 additions and 9 deletions
+5
View File
@@ -110,6 +110,11 @@ builder.Services.AddScoped<IHrKpiAccessService, HrKpiAccessService>();
builder.Services.AddScoped<IFinanceCockpitAccessService, FinanceCockpitAccessService>();
var app = builder.Build();
var pathBase = app.Configuration["ASPNETCORE_PATHBASE"];
if (!string.IsNullOrWhiteSpace(pathBase))
{
app.UsePathBase(pathBase.Trim());
}
using (var scope = app.Services.CreateScope())
{