From 2cbfc05810a3781dbe52d33180b3eaffe1f3a7b3 Mon Sep 17 00:00:00 2001 From: zhang Date: Tue, 9 Jun 2026 23:59:04 +0200 Subject: [PATCH] fix(identity): add missing session synchronizer usings --- .../Session/IdentitySessionUserInactiveSynchronizer.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Domain/LINGYUN/Abp/Identity/Session/IdentitySessionUserInactiveSynchronizer.cs b/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Domain/LINGYUN/Abp/Identity/Session/IdentitySessionUserInactiveSynchronizer.cs index 8c26cdfb6..022bb26d6 100644 --- a/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Domain/LINGYUN/Abp/Identity/Session/IdentitySessionUserInactiveSynchronizer.cs +++ b/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Domain/LINGYUN/Abp/Identity/Session/IdentitySessionUserInactiveSynchronizer.cs @@ -1,4 +1,10 @@ -namespace LINGYUN.Abp.Identity.Session; +using System.Threading.Tasks; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Entities.Events.Distributed; +using Volo.Abp.EventBus.Distributed; +using Volo.Abp.Uow; + +namespace LINGYUN.Abp.Identity.Session; public class IdentitySessionUserInactiveSynchronizer : IDistributedEventHandler>,