From eff6fded72ff682c602edb60655db92d22d52251 Mon Sep 17 00:00:00 2001 From: WorkClub Automation Date: Tue, 3 Mar 2026 14:32:43 +0100 Subject: [PATCH] chore(backend): clean up redundant Finbuckle package and add ITenantProvider interface --- backend/WorkClub.Api/WorkClub.Api.csproj | 1 - backend/WorkClub.Application/Interfaces/ITenantProvider.cs | 7 +++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 backend/WorkClub.Application/Interfaces/ITenantProvider.cs diff --git a/backend/WorkClub.Api/WorkClub.Api.csproj b/backend/WorkClub.Api/WorkClub.Api.csproj index e4116e2..7748a7d 100644 --- a/backend/WorkClub.Api/WorkClub.Api.csproj +++ b/backend/WorkClub.Api/WorkClub.Api.csproj @@ -8,7 +8,6 @@ - diff --git a/backend/WorkClub.Application/Interfaces/ITenantProvider.cs b/backend/WorkClub.Application/Interfaces/ITenantProvider.cs new file mode 100644 index 0000000..39714c2 --- /dev/null +++ b/backend/WorkClub.Application/Interfaces/ITenantProvider.cs @@ -0,0 +1,7 @@ +namespace WorkClub.Application.Interfaces; + +public interface ITenantProvider +{ + string GetTenantId(); + string GetUserRole(); +}