From c9cb629ddb293919706fcda0e4d192f71c1ff40c Mon Sep 17 00:00:00 2001 From: WorkClub Automation Date: Tue, 3 Mar 2026 14:32:55 +0100 Subject: [PATCH] fix(backend): use explicit Finbuckle.MultiTenant namespace imports --- backend/WorkClub.Api/Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/WorkClub.Api/Program.cs b/backend/WorkClub.Api/Program.cs index 748491a..4a2e1ce 100644 --- a/backend/WorkClub.Api/Program.cs +++ b/backend/WorkClub.Api/Program.cs @@ -1,4 +1,6 @@ -using Finbuckle.MultiTenant; +using Finbuckle.MultiTenant.Abstractions; +using Finbuckle.MultiTenant.Extensions; +using Finbuckle.MultiTenant.AspNetCore.Extensions; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.EntityFrameworkCore;