chore(backend): clean up redundant Finbuckle package and add ITenantProvider interface

This commit is contained in:
WorkClub Automation
2026-03-03 14:32:43 +01:00
parent 28964c6767
commit eff6fded72
2 changed files with 7 additions and 1 deletions

View File

@@ -8,7 +8,6 @@
<ItemGroup>
<PackageReference Include="AspNetCore.HealthChecks.NpgSql" Version="9.0.0" />
<PackageReference Include="Finbuckle.MultiTenant" Version="10.0.3" />
<PackageReference Include="Finbuckle.MultiTenant.AspNetCore" Version="10.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />

View File

@@ -0,0 +1,7 @@
namespace WorkClub.Application.Interfaces;
public interface ITenantProvider
{
string GetTenantId();
string GetUserRole();
}