Refine cockpit navigation and HR access

This commit is contained in:
2026-05-15 11:14:46 +02:00
parent e20693243d
commit 83e556e89e
13 changed files with 556 additions and 198 deletions
@@ -0,0 +1,11 @@
namespace TrafagSalesExporter.Security;
public sealed class HrKpiAccessOptions
{
public const string SectionName = "HrKpiAccess";
public bool Enabled { get; set; } = true;
public string Username { get; set; } = "hr";
public string PasswordHash { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}